Don't print exception because sometimes the class doesn't exist.

This commit is contained in:
libraryaddict 2013-11-23 04:01:54 +13:00
parent 441d69fd62
commit 49b81b0deb

View file

@ -105,7 +105,7 @@ public class ReflectionManager {
try { try {
return Class.forName("net.minecraft.server." + bukkitVersion + "." + className); return Class.forName("net.minecraft.server." + bukkitVersion + "." + className);
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); // e.printStackTrace();
} }
return null; return null;
} }