mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 02:36:59 +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)
|
public static boolean doif(Supplier<Boolean> c, Runnable g)
|
||||||
{
|
{
|
||||||
if(c.get())
|
try {
|
||||||
{
|
if (c.get()) {
|
||||||
g.run();
|
g.run();
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (NullPointerException e) {
|
||||||
|
// TODO: Fix this because this is just a suppression for an NPE on g
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user