--- a/net/minecraft/resources/RegistryResourceAccess.java +++ b/net/minecraft/resources/RegistryResourceAccess.java @@ -160,8 +160,10 @@ })); } - private static final class Entry extends Record { + // CraftBukkit start + private static final record Entry(JsonElement data, int id, Lifecycle lifecycle) { + /* final JsonElement data; final int id; final Lifecycle lifecycle; @@ -183,6 +185,8 @@ public final boolean equals(Object object) { return this.equals(this, object); } + */ + // CraftBukkit end public JsonElement data() { return this.data; @@ -198,8 +202,10 @@ } } - public static final class ParsedEntry extends Record { + // CraftBukkit start + public static final record ParsedEntry(E value, OptionalInt fixedId) { + /* private final E value; private final OptionalInt fixedId; @@ -207,6 +213,8 @@ this.value = e0; this.fixedId = optionalint; } + */ + // CraftBukkit end public static RegistryResourceAccess.ParsedEntry createWithoutId(E e0) { return new RegistryResourceAccess.ParsedEntry(e0, OptionalInt.empty()); @@ -216,6 +224,8 @@ return new RegistryResourceAccess.ParsedEntry(e0, OptionalInt.of(i)); } + // CraftBukkit start + /* public final String toString() { return this.toString < invokedynamic > (this); } @@ -235,5 +245,7 @@ public OptionalInt fixedId() { return this.fixedId; } + */ + // CraftBukkit end } }