Remove debug messages
This commit is contained in:
parent
67f4361959
commit
9933345a7b
@ -402,12 +402,10 @@ public class GearManager extends MiniPlugin implements IPacketHandler, Runnable
|
||||
String strUUID = ((NBTTagString) data.get("gearmanager.uuid")).a_();
|
||||
try
|
||||
{
|
||||
System.out.println("Is new item: " + strUUID);
|
||||
UUID uuid = UUID.fromString(strUUID);
|
||||
CustomItem customItem = _customItemCache.get(uuid);
|
||||
if (customItem == null)
|
||||
{
|
||||
System.out.println("Reparsing");
|
||||
String json = ((NBTTagString) data.get("gearmanager.json")).a_();
|
||||
customItem = deserialize(json);
|
||||
_customItemCache.put(uuid, customItem);
|
||||
@ -471,8 +469,6 @@ public class GearManager extends MiniPlugin implements IPacketHandler, Runnable
|
||||
try
|
||||
{
|
||||
CustomItem customItem = deserialize(serialization);
|
||||
System.out.println("Is old format: " + customItem._uuid);
|
||||
System.out.println(serialization);
|
||||
|
||||
data.put("gearmanager.uuid", new NBTTagString(customItem._uuid));
|
||||
data.put("gearmanager.json", new NBTTagString(serialization));
|
||||
|
Loading…
Reference in New Issue
Block a user