SyntaxFix
Write A Post
Hire A Developer
Questions
I have found an alternative faster solution:
int j = 0; for (Iterator i = list.listIterator(); i.hasNext(); ) { j++; if (campo.getNome().equals(key)) { i.remove(); i = list.listIterator(j); } }