我有這樣一段代碼:java.util.ConcurrentModificationException在Groovy
void remove(){
boolean allowRemove = false;
violations.each{
if(it.selected) allowRemove = true;
}
if(!allowRemove) throw new Exception("No item selected!");
if(allowRemove){
def templist = violations;
templist.each{ if(it.selected) templist.remove(it) }
violations = templist;
tableHandler.reload();
}
}
每次執行該代碼,我的應用程序拋出一個錯誤:java.util.ConcurrentModificationException
。我在Java使用Iterator
找到了如何解決這個問題的答案。但我不知道如何編碼它在Groovy
。任何想法?
更新與堆棧跟蹤的問題。 – Rao
Groovy 1.5已超過8歲......請儘可能升級 –