Commit 9f2911b2 authored by MACE Lloyd's avatar MACE Lloyd

Replace Noeud.java

parent 0ecfd94a
......@@ -18,7 +18,7 @@ public class Noeud {
ArrayList<Noeud> listeEnfant;
public Noeud() {
this.etat = null;
this.etat = new Etat();
this.parent = null;
listeEnfant = new ArrayList();
}
......@@ -53,4 +53,6 @@ public class Noeud {
this.listeEnfant = listeEnfant;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment