Explorar o código

Removed some commented out code I forgot to remove.

Paul Speed %!s(int64=9) %!d(string=hai) anos
pai
achega
8bc2348046
Modificáronse 1 ficheiros con 0 adicións e 7 borrados
  1. 0 7
      jme3-examples/src/main/java/jme3test/app/TestCloner.java

+ 0 - 7
jme3-examples/src/main/java/jme3test/app/TestCloner.java

@@ -234,13 +234,6 @@ public class TestCloner {
  
         public void cloneFields( Cloner cloner, Object original ) {
             this.links = cloner.clone(links);
-            /*
-            // manually clone the list for a sec
-            List<GraphNode> cloneList = (List<GraphNode>)((ArrayList<GraphNode>)links).clone(); //new ArrayList<GraphNode>();
-            for( int i = 0; i < links.size(); i++ ) {
-                cloneList.set(i, cloner.clone(links.get(i)));
-            }
-            links = cloneList;*/
         } 
         
         public String toString() {