I am getting an exception when I try to remove elements from CopyOnWriteArrayList using an iterator. I have noticed that it is documented
Element-c
Below works fine with CopyOnWriteArrayList
for(String key : list) { if () { list.remove(key); } }