diff options
author | 2024-05-11 00:39:00 -0400 | |
---|---|---|
committer | 2024-05-11 00:39:00 -0400 | |
commit | 1182683a5e84e9c385d0bb66c6db35c8439fc96b (patch) | |
tree | cac18e911fa9c0e54ceb5e13d7721d5e6377684d /src/main/java/org/chrisoft | |
parent | 1254320033d9345c8cf27e2dbeeb0b098735d029 (diff) | |
download | meteor-trashy-addon-1182683a5e84e9c385d0bb66c6db35c8439fc96b.tar.xz |
Remove excessive debug outputs.
Diffstat (limited to 'src/main/java/org/chrisoft')
-rw-r--r-- | src/main/java/org/chrisoft/trashyaddon/modules/AcceptablePrices.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main/java/org/chrisoft/trashyaddon/modules/AcceptablePrices.java b/src/main/java/org/chrisoft/trashyaddon/modules/AcceptablePrices.java index 9e96dfe..4809640 100644 --- a/src/main/java/org/chrisoft/trashyaddon/modules/AcceptablePrices.java +++ b/src/main/java/org/chrisoft/trashyaddon/modules/AcceptablePrices.java @@ -65,13 +65,11 @@ public class AcceptablePrices implements ICopyable<AcceptablePrices>, ISerializa l.add(a); } ret.put("Prices", l); - MeteorClient.LOG.warn("AcceptablePrices NBT result: " + ret.asString()); return ret; } @Override public AcceptablePrices fromTag(NbtCompound tag) { - MeteorClient.LOG.warn("AcceptablePrices NBT from: " + tag.asString()); HashMap<Item, Integer> ret = new HashMap<>(); try { NbtList l = tag.getList("Prices", NbtElement.COMPOUND_TYPE); @@ -86,7 +84,6 @@ public class AcceptablePrices implements ICopyable<AcceptablePrices>, ISerializa this.prices = new HashMap<>(); return this; } - MeteorClient.LOG.warn(ret.toString()); this.prices = ret; return this; } |