Hi,
kann mir jemand helfen, dass nicht dauernd die Exception auftritt?
Ich habe leider keinen Schimmer wie ich vorgehen muss.
hier die Fehlermeldung
Vielen Dank für eure Hilfe
))
kann mir jemand helfen, dass nicht dauernd die Exception auftritt?
Ich habe leider keinen Schimmer wie ich vorgehen muss.
Java:
int anzElemente = acqList.size();
Iterator<Acquistion> it = acqList.iterator();
Acquistion el = new Acquistion(campaign, adName, adSet, r, s, l);
acqList.add(el);
Acquistion a;
while (it.hasNext()){
a=it.next();
System.out.println(a.getName());}
hier die Fehlermeldung
Java:
Exception in thread "AWT-EventQueue-1" java.util.ConcurrentModificationException
at java.util.LinkedList$ListItr.checkForComodification(Unknown Source)
at java.util.LinkedList$ListItr.next(Unknown Source)
at Haupt$SendListener.actionPerformed(Haupt.java:212)
Vielen Dank für eure Hilfe