Fix a little rawtypes

This commit is contained in:
Octavia Togami 2022-07-16 00:54:13 -07:00
parent b7301a64df
commit 914e0a322e
No known key found for this signature in database
GPG Key ID: CC364524D1983C99
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ private NBTConverter() {
public static net.minecraft.nbt.Tag toNative(LinTag<?> tag) {
if (tag instanceof LinIntArrayTag t) {
return toNative(t);
} else if (tag instanceof LinListTag t) {
} else if (tag instanceof LinListTag<?> t) {
return toNative(t);
} else if (tag instanceof LinLongTag t) {
return toNative(t);

View File

@ -50,7 +50,7 @@ private NBTConverter() {
public static net.minecraft.nbt.Tag toNative(LinTag<?> tag) {
if (tag instanceof LinIntArrayTag t) {
return toNative(t);
} else if (tag instanceof LinListTag t) {
} else if (tag instanceof LinListTag<?> t) {
return toNative(t);
} else if (tag instanceof LinLongTag t) {
return toNative(t);