Removed some commented out code I forgot to remove.

cleanup_build_scripts
Paul Speed 9 years ago
parent 90af571f76
commit 8bc2348046
  1. 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() {

Loading…
Cancel
Save