Skip for profiling now

This commit is contained in:
cyberpwn 2021-08-17 16:09:58 -04:00
parent 9e32fcda88
commit fc5763c8e8

View File

@ -505,18 +505,6 @@ public class IrisComplex implements DataProvider {
}
public void close() {
// I know this looks awful, but it helps gc not deal with the spaghetti reference soup going on here
for (Field i : getClass().getDeclaredFields())
{
if(i.getType().equals(ProceduralStream.class))
{
i.setAccessible(true);
try {
i.set(this, null);
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
}
}
}