Explorar el Código

Removed a bit of commented out dead code.

Paul Speed hace 9 años
padre
commit
68425480cb
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);