From 0c7b833be7d86598a6813cd1c6db0ca9e1b17966 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Wed, 21 Aug 2019 23:22:47 -0400
Subject: [PATCH] Clear versions.

---
 GroupLeaf.java |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/GroupLeaf.java b/GroupLeaf.java
index b42c72d..9c7e5f5 100644
--- a/GroupLeaf.java
+++ b/GroupLeaf.java
@@ -9,13 +9,19 @@
  */
 public class GroupLeaf extends Composite
 {
-    static final long serialVersionUID = -1647706059469889079L;
+    static final long serialVersionUID =  // for wader: -6036608125951558970L;
+                                -1647706059469889079L;
     
     GroupLeaf()
     {
-        super("GroupLeaf");
+        this("Loop");
+    }
+
+    GroupLeaf(String name)
+    {
+        super(name);
         
-        addChild(new cGroup("Leaf"));
+        addChild(new cGroup(name + "Leaf"));
     }
 
     Object3D deepCopy()

--
Gitblit v1.6.2