Cleanup obfuscation helper comment format

This commit is contained in:
Zach Brown
2016-07-27 17:46:02 -05:00
parent 608d77d492
commit 2ee4beaa3a
10 changed files with 29 additions and 17 deletions

View File

@@ -238,13 +238,13 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
this.map.put(s, new NBTTagLong(i));
}
+ public void setUUID(String prefix, UUID uuid) { a(prefix, uuid); } // Paper // OBFHELPER
+ public void setUUID(String prefix, UUID uuid) { a(prefix, uuid); } // Paper - OBFHELPER
public void a(String s, UUID uuid) {
this.setLong(s + "Most", uuid.getMostSignificantBits());
this.setLong(s + "Least", uuid.getLeastSignificantBits());
}
+ public UUID getUUID(String prefix) { return a(prefix); } // Paper // OBFHELPER
+ public UUID getUUID(String prefix) { return a(prefix); } // Paper - OBFHELPER
@Nullable
public UUID a(String s) {
return new UUID(this.getLong(s + "Most"), this.getLong(s + "Least"));