Update #24 - 1000s of optimizations, shared worlds on desktop

This commit is contained in:
lax1dude
2024-03-02 20:51:44 -08:00
parent a50c93cb75
commit 8ab65942c5
624 changed files with 8091 additions and 3620 deletions

View File

@ -53,8 +53,8 @@ public final class ObjectUtil {
throw new NullPointerException(text);
}
for (T element : varargs) {
if (element == null) {
for (int i = 0; i < varargs.length; ++i) {
if (varargs[i] == null) {
throw new NullPointerException(text);
}
}