You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jc...@apache.org on 2007/04/11 10:39:04 UTC

svn commit: r527415 - /incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/AuthenticatedWebSession.java

Author: jcompagner
Date: Wed Apr 11 01:39:03 2007
New Revision: 527415

URL: http://svn.apache.org/viewvc?view=rev&rev=527415
Log:
rollback of the create of the RequestCycle in the session constructor (need to find another way if this is needed)

Modified:
    incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/AuthenticatedWebSession.java

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/AuthenticatedWebSession.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/AuthenticatedWebSession.java?view=diff&rev=527415&r1=527414&r2=527415
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/AuthenticatedWebSession.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.5/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/AuthenticatedWebSession.java Wed Apr 11 01:39:03 2007
@@ -17,7 +17,6 @@
 package org.apache.wicket.authentication;
 
 import org.apache.wicket.Request;
-import org.apache.wicket.Response;
 import org.apache.wicket.Session;
 import org.apache.wicket.authorization.strategies.role.Roles;
 import org.apache.wicket.protocol.http.WebSession;
@@ -52,10 +51,9 @@
 	 *            The current request object
 	 * @param response
 	 */
-	public AuthenticatedWebSession(final AuthenticatedWebApplication application, Request request,
-			Response response)
+	public AuthenticatedWebSession(final AuthenticatedWebApplication application, Request request)
 	{
-		super(application, request, response);
+		super(application, request);
 	}
 
 	/**