Fix ChiCombo outofboundsexception

This commit is contained in:
jedk1 2016-01-08 18:07:29 +00:00
parent 0794c6945e
commit 0ca0f22370

View file

@ -100,6 +100,9 @@ public class ChiCombo {
remove.add(instances.indexOf(c));
}
for (int i : remove) {
if (i >= instances.size()) {
continue;
}
instances.remove(i);
}
}