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

svn commit: r525792 - /incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/wicket/threadtest/apps/app1/TestApp1.java

Author: almaw
Date: Thu Apr  5 03:43:58 2007
New Revision: 525792

URL: http://svn.apache.org/viewvc?view=rev&rev=525792
Log:
Make this compile.

Modified:
    incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/wicket/threadtest/apps/app1/TestApp1.java

Modified: incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/wicket/threadtest/apps/app1/TestApp1.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/wicket/threadtest/apps/app1/TestApp1.java?view=diff&rev=525792&r1=525791&r2=525792
==============================================================================
--- incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/wicket/threadtest/apps/app1/TestApp1.java (original)
+++ incubator/wicket/branches/wicket-1.x/testing/wicket-threadtest/src/main/java/wicket/threadtest/apps/app1/TestApp1.java Thu Apr  5 03:43:58 2007
@@ -57,7 +57,7 @@
 
 	@Override
 	protected ISessionStore newSessionStore() {
-		return new SecondLevelCacheSessionStore(new FilePageStore());
+		return new SecondLevelCacheSessionStore(this, new FilePageStore());
 		//return new HttpSessionStore();
 	}
 }