From 35e37121f9cf9db4f561d0ede337a1baa19ae860 Mon Sep 17 00:00:00 2001 From: Dan Mulloy Date: Sat, 13 Aug 2016 17:58:59 -0400 Subject: [PATCH] Don't print a message if we cant find custom types --- .../com/comphenix/protocol/wrappers/WrappedDataWatcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProtocolLib/src/main/java/com/comphenix/protocol/wrappers/WrappedDataWatcher.java b/ProtocolLib/src/main/java/com/comphenix/protocol/wrappers/WrappedDataWatcher.java index a3f922e0..ee7492b4 100644 --- a/ProtocolLib/src/main/java/com/comphenix/protocol/wrappers/WrappedDataWatcher.java +++ b/ProtocolLib/src/main/java/com/comphenix/protocol/wrappers/WrappedDataWatcher.java @@ -84,7 +84,7 @@ public class WrappedDataWatcher extends AbstractWrapper implements Iterable 1 ? Accessors.getFieldAccessor(spigotClass, "value2", true) : null; } catch (ClassNotFoundException e) { - System.out.println("[ProtocolLib] Unable to find " + className); + // System.out.println("[ProtocolLib] Unable to find " + className); this.spigotClass = null; } this.typeId = typeId;