You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by iv...@apache.org on 2010/08/03 01:46:48 UTC

svn commit: r981708 - /wicket/trunk/wicket/src/main/java/org/apache/wicket/Application.java

Author: ivaynberg
Date: Mon Aug  2 23:46:47 2010
New Revision: 981708

URL: http://svn.apache.org/viewvc?rev=981708&view=rev
Log:
missing final

Modified:
    wicket/trunk/wicket/src/main/java/org/apache/wicket/Application.java

Modified: wicket/trunk/wicket/src/main/java/org/apache/wicket/Application.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/Application.java?rev=981708&r1=981707&r2=981708&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/Application.java (original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/Application.java Mon Aug  2 23:46:47 2010
@@ -1209,7 +1209,7 @@ public abstract class Application implem
 	 * 
 	 * @return compound instance of the root mapper
 	 */
-	public ICompoundRequestMapper getRootRequestMapperAsCompound()
+	public final ICompoundRequestMapper getRootRequestMapperAsCompound()
 	{
 		IRequestMapper root = getRootRequestMapper();
 		if (!(root instanceof ICompoundRequestMapper))