DiskPageStore::convertToPage cleanup
------------------------------------
Key: WICKET-2223
URL: https://issues.apache.org/jira/browse/WICKET-2223
Project: Wicket
Issue Type: Bug
Components: wicket
Affects Versions: 1.4-RC2
Reporter: Michael Laccetti
String type = page != null ? page.getClass().getName() : null;
throw new IllegalArgumentException("Unknown object type + type");
should be:
String type = page != null ? page.getClass().getName() : null;
throw new IllegalArgumentException("Unknown object type" + type);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.