This content has been marked as final.
Show 3 replies
-
1. Re: failed to transform $Proxy29: ConcurrentModificationExce
waynebaylor Jun 20, 2007 10:12 AM (in response to bartvh)sounds like your modifying a collection while iterating over it.
for example:Collection stuff = someObject.getCollection(); for(Object obj : stuff) { ... stuff.remove(obj); ... }
-
2. Re: failed to transform $Proxy29: ConcurrentModificationExce
bartvh Jun 26, 2007 10:58 AM (in response to bartvh)"waynebaylor" wrote:
sounds like your modifying a collection while iterating over it.
This is indeed what I was trying to make clear to the JBoss AOP developers...
A JIRA issue has been created at http://jira.jboss.com/jira/browse/JBAOP-430. -
3. Re: failed to transform $Proxy29: ConcurrentModificationExce
kabirkhan Jun 26, 2007 11:03 AM (in response to bartvh)It has been scheduled for the next release