mirror of
https://github.com/Eaglercraft-Archive/Eaglercraftx-1.8.8-src.git
synced 2025-06-27 18:38:14 -05:00
Update #24 - 1000s of optimizations, shared worlds on desktop
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user