переименование метода

This commit is contained in:
2020-04-21 23:30:23 +03:00
parent 2aa7a2bd07
commit c5064be7ea
3 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ public class TagListCodec implements Codec<TagList> {
@Override
public TagList decode(NbtInputStream in) throws IOException {
final Codec typeCodec = CodecEnum.valueOfTypeTag(TypeTag.getTypeById(in.readByte())).getCodec();
final Codec typeCodec = CodecEnum.valueOfTypeTag(TypeTag.valueOfTypeId(in.readByte())).getCodec();
final int size = in.readInt();
List<Tag> tagList;

View File

@@ -28,7 +28,7 @@ public class NbtInputStream extends InputStream {
}
public Tag readTag() throws IOException {
final TypeTag typeTag = TypeTag.getTypeById(read());
final TypeTag typeTag = TypeTag.valueOfTypeId(read());
if (typeTag == TypeTag.END) {
return TagEnd.INSTANCE;
} else {