Fix typos

This commit is contained in:
Pierre Grimaud
2020-04-29 19:36:34 +02:00
parent fda7d00747
commit f9a40599fb
11 changed files with 20 additions and 20 deletions

View File

@ -72,7 +72,7 @@ public final class NBTUtils {
} else if (clazz.equals(LongArrayTag.class)) {
return "TAG_Long_Array";
} else {
throw new IllegalArgumentException("Invalid tag classs ("
throw new IllegalArgumentException("Invalid tag class ("
+ clazz.getName() + ").");
}
}
@ -112,7 +112,7 @@ public final class NBTUtils {
} else if (clazz.equals(LongArrayTag.class)) {
return NBTConstants.TYPE_LONG_ARRAY;
} else {
throw new IllegalArgumentException("Invalid tag classs ("
throw new IllegalArgumentException("Invalid tag class ("
+ clazz.getName() + ").");
}
}