Commit ccf03071f06b467c39e644088c24a286e2f3abf7
1 parent
fe379483
Remove vestigial debugging messages
Showing
2 changed files
with
0 additions
and
12 deletions
src/client/java/com/mumfrey/liteloader/client/mixin/MixinRegistryNamespaced.java
... | ... | @@ -19,16 +19,10 @@ public abstract class MixinRegistryNamespaced<K, V> extends MixinRegistrySimple< |
19 | 19 | public V removeObjectFromRegistry(K key) |
20 | 20 | { |
21 | 21 | V removed = super.removeObjectFromRegistry(key); |
22 | - System.err.println("===================================================================================================="); | |
23 | - System.err.println("===================================================================================================="); | |
24 | - System.err.println("Removed object: " + removed); | |
25 | 22 | if (removed != null && this.underlyingIntegerMap instanceof IIntIdentityHashBiMap) |
26 | 23 | { |
27 | - System.err.println("Removing " + removed + " from underlying int map"); | |
28 | 24 | ((IIntIdentityHashBiMap<V>)this.underlyingIntegerMap).removeObject(removed); |
29 | 25 | } |
30 | - System.err.println("===================================================================================================="); | |
31 | - System.err.println("===================================================================================================="); | |
32 | 26 | return removed; |
33 | 27 | } |
34 | 28 | } | ... | ... |
src/client/java/com/mumfrey/liteloader/client/mixin/MixinRegistrySimple.java
... | ... | @@ -19,12 +19,6 @@ public abstract class MixinRegistrySimple<K, V> implements IMutableRegistry<K, V |
19 | 19 | @Override |
20 | 20 | public V removeObjectFromRegistry(K key) |
21 | 21 | { |
22 | - System.err.println("===================================================================================================="); | |
23 | - System.err.println("===================================================================================================="); | |
24 | - System.err.println("removeObjectFromRegistry: " + key); | |
25 | - System.err.println("===================================================================================================="); | |
26 | - System.err.println("===================================================================================================="); | |
27 | - | |
28 | 22 | this.values = null; |
29 | 23 | return this.registryObjects.remove(key); |
30 | 24 | } | ... | ... |