Hi,I'm testing my application with the main trunk of Wicket (Wicket 6). I've found a problem with class Loop. With commit 1203322 Igor changed iteration variables from int to long, but this causes a cast exception in getIterations():
public final long getIterations()
{
return (Long)getDefaultModelObject();
}
The model of Loop is an Integer, so it cannot cast to Long. Reverting
this method to old version seems to solve problem.
