Author: marrink
Date: Wed Apr 16 12:43:23 2008
New Revision: 648813
URL: http://svn.apache.org/viewvc?rev=648813&view=rev
Log:
fix deprecated 2 arg constructor
Modified:
wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MyAuthenticatedWebSession.java
Modified:
wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MyAuthenticatedWebSession.java
URL:
http://svn.apache.org/viewvc/wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MyAuthenticatedWebSession.java?rev=648813&r1=648812&r2=648813&view=diff
==============================================================================
---
wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MyAuthenticatedWebSession.java
(original)
+++
wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MyAuthenticatedWebSession.java
Wed Apr 16 12:43:23 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);
}
/**