-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[core] Jadx: ConcurrentModificationException #1339
Comments
So the ConcurrentModificationException happens while iterating over A better approach seems to be to eliminate the modification. From my observations one modification happens in So one problem are the two lines in
list.add increases the modification counter and thus can trigger the ConcurrentModificationException. Changing
@bagipro How reproducible is the error on your system? Does it occur often/every time or only very rarely? |
@jpstotz |
Hey,
I've noticed an error when running decompilation in multiple threads in https://github.com/skylot/jadx/blob/master/jadx-core/src/main/java/jadx/core/ProcessClass.java#L97:
Probably there's no reason to attach the APK
The text was updated successfully, but these errors were encountered: