You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ma...@apache.org on 2008/04/16 21:23:42 UTC

svn commit: r648797 - /wicket/branches/wicket-1.3.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MyAuthenticatedWebSession.java

Author: marrink
Date: Wed Apr 16 12:23:28 2008
New Revision: 648797

URL: http://svn.apache.org/viewvc?rev=648797&view=rev
Log:
fix deprecated 2 arg constructor

Modified:
    wicket/branches/wicket-1.3.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MyAuthenticatedWebSession.java

Modified: wicket/branches/wicket-1.3.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MyAuthenticatedWebSession.java
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.3.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MyAuthenticatedWebSession.java?rev=648797&r1=648796&r2=648797&view=diff
==============================================================================
--- wicket/branches/wicket-1.3.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MyAuthenticatedWebSession.java (original)
+++ wicket/branches/wicket-1.3.x/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MyAuthenticatedWebSession.java Wed Apr 16 12:23:28 2008
@@ -17,7 +17,6 @@
 package org.apache.wicket.examples.authentication;
 
 import org.apache.wicket.Request;
-import org.apache.wicket.authentication.AuthenticatedWebApplication;
 import org.apache.wicket.authentication.AuthenticatedWebSession;
 import org.apache.wicket.authorization.strategies.role.Roles;
 
@@ -32,14 +31,12 @@
 	/**
 	 * Construct.
 	 * 
-	 * @param application
-	 *            The application
 	 * @param request
 	 *            The current request object
 	 */
-	public MyAuthenticatedWebSession(final AuthenticatedWebApplication application, Request request)
+	public MyAuthenticatedWebSession(Request request)
 	{
-		super(application, request);
+		super(request);
 	}
 
 	/**