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/03/12 19:48:58 UTC

svn commit: r922391 - /wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java

Author: ivaynberg
Date: Fri Mar 12 18:48:57 2010
New Revision: 922391

URL: http://svn.apache.org/viewvc?rev=922391&view=rev
Log:
javadoc cleanup
Issue: WICKET-2758

Modified:
    wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java

Modified: wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java?rev=922391&r1=922390&r2=922391&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java (original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java Fri Mar 12 18:48:57 2010
@@ -282,7 +282,7 @@ public abstract class WebApplication ext
 	 * @param mapper
 	 *            the encoder that will be used for this mount
 	 * 
-	 * @deprecated this is the same as {@code getRotmapperAsCompound().add(mapper)}
+	 * @deprecated this is the same as {@code getRootMapperAsCompound().add(mapper)}
 	 */
 	@Deprecated
 	public final void mount(IRequestMapper mapper)
@@ -320,7 +320,7 @@ public abstract class WebApplication ext
 	 *            the bookmarkable page class to mount
 	 * 
 	 * @deprecated use mounted mapper instead, this method can be represented as {@code
-	 *             getRootMapperAsCompound().mount(new MountedMapper(path,clazz))}
+	 *             getRootMapperAsCompound().add(new MountedMapper(path,clazz))}
 	 */
 	@Deprecated
 	public final <T extends Page> void mountBookmarkablePage(final String path,