Add missing final

"muh checkstyle" more like "muh missing style config"
This commit is contained in:
Shane Freeder
2025-01-17 13:49:38 +00:00
parent 938a84fc39
commit e150ffd272

View File

@@ -84,7 +84,7 @@ public class DataComponentValueConverterProviderImpl implements DataComponentVal
Tag decodedSnbt; Tag decodedSnbt;
try { try {
decodedSnbt = tagSerializable.asBinaryTag().get(PaperAdventure.NBT_CODEC); decodedSnbt = tagSerializable.asBinaryTag().get(PaperAdventure.NBT_CODEC);
} catch (CommandSyntaxException e) { } catch (final CommandSyntaxException e) {
throw new IllegalArgumentException("Unable to parse SNBT value", e); throw new IllegalArgumentException("Unable to parse SNBT value", e);
} }