summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/NBTTagCompound.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/minecraft/server/NBTTagCompound.java')
-rw-r--r--src/main/java/net/minecraft/server/NBTTagCompound.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/net/minecraft/server/NBTTagCompound.java b/src/main/java/net/minecraft/server/NBTTagCompound.java
index 834d2724..cd264824 100644
--- a/src/main/java/net/minecraft/server/NBTTagCompound.java
+++ b/src/main/java/net/minecraft/server/NBTTagCompound.java
@@ -32,14 +32,13 @@ public class NBTTagCompound extends NBTBase {
try {
dataoutput.writeByte(0);
} catch (java.io.IOException ex) {
- java.util.logging.Logger.getLogger(NBTTagCompound.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
+ ex.printStackTrace();
}
}
public void remove(String name) {
map.remove(name);
}
-
// CraftBukkit end
void load(DataInput datainput) {
@@ -52,7 +51,7 @@ public class NBTTagCompound extends NBTBase {
}
}
- public Collection d() {
+ public Collection c() {
return this.map.values();
}