File tree Expand file tree Collapse file tree 13 files changed +13
-13
lines changed
nbt/src/main/java/core/nbt/serialization/adapter Expand file tree Collapse file tree 13 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1111import java .net .InetSocketAddress ;
1212
1313@ NullMarked
14- public class AddressAdapter implements TagAdapter <InetSocketAddress > {
14+ public final class AddressAdapter implements TagAdapter <InetSocketAddress > {
1515 public static final AddressAdapter INSTANCE = new AddressAdapter ();
1616
1717 @ Override
Original file line number Diff line number Diff line change 99import org .jspecify .annotations .NullMarked ;
1010
1111@ NullMarked
12- public class BooleanAdapter implements TagAdapter <Boolean > {
12+ public final class BooleanAdapter implements TagAdapter <Boolean > {
1313 public static final BooleanAdapter INSTANCE = new BooleanAdapter ();
1414
1515 @ Override
Original file line number Diff line number Diff line change 99import org .jspecify .annotations .NullMarked ;
1010
1111@ NullMarked
12- public class ByteAdapter implements TagAdapter <Byte > {
12+ public final class ByteAdapter implements TagAdapter <Byte > {
1313 public static final ByteAdapter INSTANCE = new ByteAdapter ();
1414
1515 @ Override
Original file line number Diff line number Diff line change 99import org .jspecify .annotations .NullMarked ;
1010
1111@ NullMarked
12- public class DoubleAdapter implements TagAdapter <Double > {
12+ public final class DoubleAdapter implements TagAdapter <Double > {
1313 public static final DoubleAdapter INSTANCE = new DoubleAdapter ();
1414
1515 @ Override
Original file line number Diff line number Diff line change 1212import java .time .Duration ;
1313
1414@ NullMarked
15- public class DurationAdapter implements TagAdapter <Duration > {
15+ public final class DurationAdapter implements TagAdapter <Duration > {
1616 public static final DurationAdapter INSTANCE = new DurationAdapter ();
1717
1818 @ Override
Original file line number Diff line number Diff line change 1010import org .jspecify .annotations .NullMarked ;
1111
1212@ NullMarked
13- public class EnumAdapter <T extends Enum <T >> implements TagAdapter <T > {
13+ public final class EnumAdapter <T extends Enum <T >> implements TagAdapter <T > {
1414 private final Class <T > enumClass ;
1515
1616 public EnumAdapter (Class <T > enumClass ) {
Original file line number Diff line number Diff line change 1111import java .io .File ;
1212
1313@ NullMarked
14- public class FileAdapter implements TagAdapter <File > {
14+ public final class FileAdapter implements TagAdapter <File > {
1515 public static final FileAdapter INSTANCE = new FileAdapter ();
1616
1717 @ Override
Original file line number Diff line number Diff line change 99import org .jspecify .annotations .NullMarked ;
1010
1111@ NullMarked
12- public class FloatAdapter implements TagAdapter <Float > {
12+ public final class FloatAdapter implements TagAdapter <Float > {
1313 public static final FloatAdapter INSTANCE = new FloatAdapter ();
1414
1515 @ Override
Original file line number Diff line number Diff line change 99import org .jspecify .annotations .NullMarked ;
1010
1111@ NullMarked
12- public class IntegerAdapter implements TagAdapter <Integer > {
12+ public final class IntegerAdapter implements TagAdapter <Integer > {
1313 public static final IntegerAdapter INSTANCE = new IntegerAdapter ();
1414
1515 @ Override
Original file line number Diff line number Diff line change 99import org .jspecify .annotations .NullMarked ;
1010
1111@ NullMarked
12- public class LongAdapter implements TagAdapter <Long > {
12+ public final class LongAdapter implements TagAdapter <Long > {
1313 public static final LongAdapter INSTANCE = new LongAdapter ();
1414
1515 @ Override
You can’t perform that action at this time.
0 commit comments