-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ConcurrentModificationException #70
Comments
I think this is due to some other thread modifying the cloned array list. Cloner doesn't synchronize access (wouldn't be a very good thing to do). |
@lyx0224
|
I believe that this might be fixed. In later Java versions we needed to specially handle AbstractList$Sublist. Can you check with version 1.10.0? |
Yesterday I had the same Exception because I was cloning a Java Bean with a Logger property in it. (lib version 1.9.0) |
遍历数组时候的exception
ConcurrentModificationException at java.util.ArrayList$ListIterator.next(ArrayList.java:at 573)
at com.rits.cloning.FastClonerArrayList.clone()
The text was updated successfully, but these errors were encountered: