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#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...