java.util.ConcurrentModificationException: This exception has no message.
Searched on Google with the first line of a JAVA stack trace?
We can recommend more relevant solutions and speed up debugging when you paste your entire stack trace with the exception message. Try a sample exception.
Recommended solutions based on your search
Samebug tips
Causes : The Collection is internally modified, while a thread is iterating over it. OR after the creation of an iterator, the Collection is internally modified by any method other than the iterator’s own methods for removal and addition.
In order to avoid more than one threads accessing or modifying the same object, you can synchronize them over the object, in order to allow only one thread to manipulate it over time.
Solutions on the web
via Pentaho BI Platform Tracking by Chris Deptula, 1 year ago
via Pentaho BI Platform Tracking by Chris Deptula, 1 year ago
via GitHub by AfterWind
, 2 years agovia GitHub by nicoulaj
, 1 year agovia Stack Overflow by Pradeep Gamage
, 2 years agovia Stack Overflow by Andy M
, 2 years agojava.util.ConcurrentModificationException:
at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:901)
at java.util.ArrayList$Itr.next(ArrayList.java:851)
at org.pentaho.di.www.WebServer$2.run(WebServer.java:415)
at java.util.TimerThread.mainLoop(Timer.java:555)
at java.util.TimerThread.run(Timer.java:505)