Author: jdonnerstag
Date: Sun Apr 12 20:11:04 2009
New Revision: 764319
URL: http://svn.apache.org/viewvc?rev=764319&view=rev
Log:
fixed WICKET-2223 DiskPageStore::convertToPage cleanup
Issue: WICKET-2223
Modified:
wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/pagestore/DiskPageStore.java
Modified:
wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/pagestore/DiskPageStore.java
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/pagestore/DiskPageStore.java?rev=764319&r1=764318&r2=764319&view=diff
==============================================================================
---
wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/pagestore/DiskPageStore.java
(original)
+++
wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/pagestore/DiskPageStore.java
Sun Apr 12 20:11:04 2009
@@ -1243,7 +1243,7 @@
else
{
String type = page != null ? page.getClass().getName()
: null;
- throw new IllegalArgumentException("Unknown object type
+ type");
+ throw new IllegalArgumentException("Unknown object
type" + type);
}
}