ConcurrentModificationException inspection
Answered
When, in Java, you try to add/remove from a List you should get a ConcurrentModificationException.
IntelliJ does not seem to recognize then this is happening. Was this left out due to technical difficulty? Is there something more tricky about it than what I imagine it to be? (Checking that the List is the same)?
Kind Regards,
Dylan
Please sign in to leave a comment.
Multithreaded issues are always complex to analyze using the static analysis tools.
See also https://youtrack.jetbrains.com/issue/IDEA-37209 for the related request.