Browse Source

Removed a bit of commented out dead code.

Paul Speed 9 years ago
parent
commit
68425480cb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      jme3-core/src/main/java/com/jme3/util/clone/Cloner.java

+ 1 - 1
jme3-core/src/main/java/com/jme3/util/clone/Cloner.java

@@ -202,7 +202,7 @@ public class Cloner {
         }
         
         // See if there is a custom function... that trumps everything.
-        CloneFunction<T> f = getCloneFunction(type); //(CloneFunction<T>)functions.get(type);
+        CloneFunction<T> f = getCloneFunction(type); 
         if( f != null ) {
             T result = f.cloneObject(this, object);