Archiviert
13
0

Remove extraneous debug

#494
Dieser Commit ist enthalten in:
Dan Mulloy 2018-08-03 21:58:54 -04:00
Ursprung 206dc30e17
Commit d112e9b1dc

Datei anzeigen

@ -433,7 +433,7 @@ public abstract class EnumWrappers {
FROM_NATIVE.put(nativeClass, converter); FROM_NATIVE.put(nativeClass, converter);
FROM_WRAPPER.put(wrapperClass, converter); FROM_WRAPPER.put(wrapperClass, converter);
} else if (ProtocolLogger.isDebugEnabled()) { } else if (ProtocolLogger.isDebugEnabled()) {
new ClassNotFoundException(wrapperClass.getSimpleName()).printStackTrace(); // new ClassNotFoundException(wrapperClass.getSimpleName()).printStackTrace();
} }
} }
@ -447,9 +447,9 @@ public abstract class EnumWrappers {
try { try {
return FuzzyReflection.fromClass(clazz, true).getFieldListByType(Enum.class).get(index).getType(); return FuzzyReflection.fromClass(clazz, true).getFieldListByType(Enum.class).get(index).getType();
} catch (Throwable ex) { } catch (Throwable ex) {
if (ProtocolLogger.isDebugEnabled()) { /* if (ProtocolLogger.isDebugEnabled()) {
ex.printStackTrace(); ex.printStackTrace();
} } */
return null; return null;
} }