You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2006/11/12 00:56:59 UTC

svn commit: r473831 - /incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/portlet/PortletApplication.java

Author: dashorst
Date: Sat Nov 11 15:56:58 2006
New Revision: 473831

URL: http://svn.apache.org/viewvc?view=rev&rev=473831
Log:
Fixed compilation issue for delayed session creation

Modified:
    incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/portlet/PortletApplication.java

Modified: incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/portlet/PortletApplication.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/portlet/PortletApplication.java?view=diff&rev=473831&r1=473830&r2=473831
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/portlet/PortletApplication.java (original)
+++ incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/protocol/http/portlet/PortletApplication.java Sat Nov 11 15:56:58 2006
@@ -205,12 +205,12 @@
 	}
 
 
-	/*
+	/**
 	 * Create new WicketPortletSession object
 	 * 
-	 * @see wicket.ISessionFactory#newSession()
+	 * @see wicket.ISessionFactory#newSession(Request)
 	 */
-	public Session newSession()
+	public Session newSession(Request request)
 	{
 		return new WicketPortletSession(this);
 	}