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/08/02 17:47:18 UTC

svn commit: r562148 - /wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java

Author: almaw
Date: Thu Aug  2 08:47:17 2007
New Revision: 562148

URL: http://svn.apache.org/viewvc?view=rev&rev=562148
Log:
WICKET-426 Remove final from getSession() so JDK5-types can take advantage of covariance.

Modified:
    wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java

Modified: wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java
URL: http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java?view=diff&rev=562148&r1=562147&r2=562148
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java (original)
+++ wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java Thu Aug  2 08:47:17 2007
@@ -1526,7 +1526,7 @@
 	 * 
 	 * @return The Session that this component is in
 	 */
-	public final Session getSession()
+	public Session getSession()
 	{
 		return Session.get();
 	}