Search:

Type: Posts; User: Cornix

Search: Search took 0.10 seconds.

  1. Re: Best way to solve this ConcurrentModificationException

    Well, I just went with multiple Lists.
    For this purpose I wrote this class, maybe somebody else can find use for it:

    import java.util.ArrayList;
    import java.util.ConcurrentModificationException;...
  2. Re: Best way to solve this ConcurrentModificationException

    Still looking for help. I would really appreciate just some opinions from experienced programmers.
  3. Re: Best way to solve this ConcurrentModificationException

    Sure, if you really need it.

    Exception in thread "main" java.util.ConcurrentModificationException
    at java.util.ArrayList$Itr.checkForComodification(Unknown Source)
    at...
  4. Best way to solve this ConcurrentModificationException

    Hi.

    I have a problem with a concurrent modification exception in a listener-based application. It comes from removing a listener while the listener is active.
    Here is a simple example program:
    ...
Results 1 to 4 of 4