A ConcurrentModificationException usually happens when you try to modify a Collection (like an ArrayList) while you're iterating over it. You haven't posted your code, but if you're removing objects while you're using an iterator for the list, that's your problem. To solve the problem, hold onto references to the objects you want to remove (perhaps in another ArrayList), then iterate over the new ArrayList and remove them from the original list. Something like:
import java.util.ArrayList;
public class TestRemove {
public static void main(String[] args) {
ArrayList<String> originalList = new ArrayList<String>();
originalList.add("foo");
originalList.add("bar");
originalList.add("bat");
originalList.add("baz");
originalList.add("bar");
ArrayList<String> removeList = new ArrayList<String>();
for(String currEntry : originalList) {
if(currEntry.startsWith("ba")) {
removeList.add(currEntry);
}
}
for(String removeEntry : removeList) {
originalList.remove(removeEntry);
}
for(String currEntry : originalList) {
System.out.println(currEntry);
}
}
}
If the list is small, you can just copy the items you want to keep to a new list instead.