Gwendal in main : add test on futur constraints and enhance input symbol method #1

Merged
Morph01 merged 6 commits from Gwendal into main 2025-01-04 15:56:23 +00:00
Showing only changes of commit 7c29041ca4 - Show all commits

View File

@@ -28,6 +28,7 @@ public class Symbole {
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || getClass() != obj.getClass()) return false;
Symbole symbole = (Symbole) obj;
return valeur.equals(symbole.valeur);