Hallo zusammen,
gibt es ein Tool, das die typischen Codestellen, welche ConcurrentModifiationExceptions ConcurrentModificationExceptions hervorrufen können, aus dem Stand entdeckt? Ich hatte mit FindBugs und PMD bisher kein Erfolg.
Typischer Code:
for(String s : stringSet)
{
if(s.equals("foo"))
{
stringSet.remove(s);
}
}