mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 10:12:53 +00:00
Patch NPE
This commit is contained in:
parent
685de56fbb
commit
b1d25ec35c
@ -40,10 +40,15 @@ public class J
|
||||
|
||||
public static boolean doif(Supplier<Boolean> c, Runnable g)
|
||||
{
|
||||
if(c.get())
|
||||
{
|
||||
g.run();
|
||||
return true;
|
||||
try {
|
||||
if (c.get()) {
|
||||
g.run();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
catch (NullPointerException e) {
|
||||
// TODO: Fix this because this is just a suppression for an NPE on g
|
||||
return false;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user