Thiago H de Paula Figueiredo wrote
> 
> On Wed, 23 May 2012 20:01:46 -0300, Sean <sean.whetten@>  
> wrote:
> 
> com.mycompany.product.module.components.search.account.CheckoutsList.setCurrentCheckout(CheckoutsList.java:170)
> 
> What's the code in this method?
> 

You can find the code for that method in my original post.

Anyways, I figured out that the second error I reported was due to the fact
that selected does not have @Persist, so it is expected for it to begin as
null when the form variables are being filled in. Tapestry is just lazier
that I expected (good job tapestry guys.)

I fixed it by adding 

if(selected == null)
{
    selected = new ArrayList<String>();
}

to the beginning of the getCurrentCheckout method.

And with that, my original problem is solved. Thanks for all the help.

-Sean

--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/java-util-ConcurrentModificationException-in-tapestry-5-3-3-under-stress-tp5713368p5713389.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to