sounds like your modifying a collection while iterating over it.

for example:

  | Collection stuff = someObject.getCollection();
  | for(Object obj : stuff)
  | {
  |   ...
  |   stuff.remove(obj);
  |   ...
  | }
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056047#4056047

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056047
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to