2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/JsonList.java
|
|
|
|
+++ b/net/minecraft/server/JsonList.java
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -86,7 +86,7 @@
|
|
|
|
@Nullable
|
2015-02-26 23:41:06 +01:00
|
|
|
public V get(K k0) {
|
|
|
|
this.h();
|
|
|
|
- return (JsonListEntry) this.d.get(this.a(k0));
|
|
|
|
+ return (V) this.d.get(this.a(k0)); // CraftBukkit - fix decompile error
|
|
|
|
}
|
|
|
|
|
|
|
|
public void remove(K k0) {
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -108,6 +108,12 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
return (String[]) this.d.keySet().toArray(new String[this.d.size()]);
|
|
|
|
}
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
2015-02-26 23:41:06 +01:00
|
|
|
+ public Collection<V> getValues() {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ return this.d.values();
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
public boolean isEmpty() {
|
|
|
|
return this.d.size() < 1;
|
|
|
|
}
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -137,7 +143,7 @@
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
Object object = iterator.next();
|
|
|
|
|
|
|
|
- this.d.remove(this.a(object));
|
|
|
|
+ this.d.remove(this.a((K) object)); // CraftBukkit - decompile error
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
@@ -180,7 +186,7 @@
|
|
|
|
JsonListEntry jsonlistentry = (JsonListEntry) iterator.next();
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
if (jsonlistentry.getKey() != null) {
|
|
|
|
- this.d.put(this.a(jsonlistentry.getKey()), jsonlistentry);
|
|
|
|
+ this.d.put(this.a((K) jsonlistentry.getKey()), (V) jsonlistentry); // CraftBukkit - fix decompile error
|
|
|
|
}
|
2017-05-19 13:00:13 +02:00
|
|
|
}
|
2015-02-26 23:41:06 +01:00
|
|
|
}
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -212,11 +218,11 @@
|
2015-02-26 23:41:06 +01:00
|
|
|
}
|
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2015-02-26 23:41:06 +01:00
|
|
|
- public JsonElement serialize(Object object, Type type, JsonSerializationContext jsonserializationcontext) {
|
|
|
|
+ public JsonElement serialize(JsonListEntry<K> object, Type type, JsonSerializationContext jsonserializationcontext) { // CraftBukkit - fix decompile error
|
|
|
|
return this.a((JsonListEntry) object, type, jsonserializationcontext);
|
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2015-02-26 23:41:06 +01:00
|
|
|
- public Object deserialize(JsonElement jsonelement, Type type, JsonDeserializationContext jsondeserializationcontext) throws JsonParseException {
|
|
|
|
+ public JsonListEntry<K> deserialize(JsonElement jsonelement, Type type, JsonDeserializationContext jsondeserializationcontext) throws JsonParseException { // CraftBukkit - fix decompile error
|
|
|
|
return this.a(jsonelement, type, jsondeserializationcontext);
|
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
|