[jboss-user] [JBoss AOP] - Re: failed to transform $Proxy29: ConcurrentModificationExce

waynebaylor do-not-reply at jboss.com
Wed Jun 20 10:12:05 EDT 2007


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



More information about the jboss-user mailing list