Removed a bit of commented out dead code.

This commit is contained in:
Paul Speed 2016-03-10 03:45:11 -05:00
parent 8bc2348046
commit 68425480cb

View File

@ -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);