mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
Fix NPE for now
This commit is contained in:
parent
8b599f78c0
commit
bca5f4bec4
@ -94,10 +94,13 @@ public class IrisProject {
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
try {
|
try {
|
||||||
for (int i = 0; i < getActiveProvider().getCompound().getSize(); i++) {
|
if(activeProvider != null && activeProvider.getCompound() != null)
|
||||||
Engine e = getActiveProvider().getCompound().getEngine(i);
|
{
|
||||||
IrisDimension dim = e.getDimension();
|
for (int i = 0; i < getActiveProvider().getCompound().getSize(); i++) {
|
||||||
reports.add(scanForErrors(dim));
|
Engine e = getActiveProvider().getCompound().getEngine(i);
|
||||||
|
IrisDimension dim = e.getDimension();
|
||||||
|
reports.add(scanForErrors(dim));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user