Normand Briere
2019-07-23 0f4fa9dc4191aaee9661c1e6d73725436ae64ac2
GroupLeaf.java
....@@ -14,7 +14,12 @@
1414
1515 GroupLeaf()
1616 {
17
- super("GroupLeaf");
17
+ this("Loop");
18
+ }
19
+
20
+ GroupLeaf(String name)
21
+ {
22
+ super(name);
1823
1924 addChild(new cGroup("Leaf"));
2025 }