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

Replace Noeud.java

parent 0ecfd94a
...@@ -18,7 +18,7 @@ public class Noeud { ...@@ -18,7 +18,7 @@ public class Noeud {
ArrayList<Noeud> listeEnfant; ArrayList<Noeud> listeEnfant;
public Noeud() { public Noeud() {
this.etat = null; this.etat = new Etat();
this.parent = null; this.parent = null;
listeEnfant = new ArrayList(); listeEnfant = new ArrayList();
} }
...@@ -53,4 +53,6 @@ public class Noeud { ...@@ -53,4 +53,6 @@ public class Noeud {
this.listeEnfant = listeEnfant; 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