In BookmarkablePageRequestTarget line 292
for (Entry<String, Object> entry : pageParameters.entrySet())
{
final Object value = entry.getValue();
* if (value.getClass().isArray())
[...]
}I'm getting a NPE. Values can be null in PageParameters, so you should check null here. This code was added on 5/26/2008. -Doug -- View this message in context: http://www.nabble.com/igor---bug-in-recent-change--tp17589000p17589000.html Sent from the Wicket - Dev mailing list archive at Nabble.com.
