1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-29 15:06:46 +02:00

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
No known key found for this signature in database
GPG key ID: A3F61EA5A085289C

View file

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