You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jd...@apache.org on 2009/04/12 22:11:05 UTC

svn commit: r764319 - /wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/pagestore/DiskPageStore.java

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);
 		}
 	}