переименование метода
This commit is contained in:
@@ -22,7 +22,7 @@ public enum TypeTag {
|
||||
LONG_ARRAY(12, TagLongArray.class);
|
||||
|
||||
public static Tag getTagById(int id) {
|
||||
TypeTag type = getTypeById(id);
|
||||
TypeTag type = valueOfTypeId(id);
|
||||
try {
|
||||
return type.classTag.newInstance();
|
||||
} catch (InstantiationException | IllegalAccessException e) {
|
||||
@@ -30,7 +30,7 @@ public enum TypeTag {
|
||||
}
|
||||
}
|
||||
|
||||
public static TypeTag getTypeById(int id) {
|
||||
public static TypeTag valueOfTypeId(int id) {
|
||||
for (TypeTag type : TypeTag.values()) {
|
||||
if (type.id == id) {
|
||||
return type;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user