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

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

@@ -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;