Fix Session javadoc (cherry picked from commit f033d30970a149baf909efaa8c42565a2cf79c64)
Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/83578b30 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/83578b30 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/83578b30 Branch: refs/heads/build/wicket-6.14.0 Commit: 83578b30768f7dc66b0fe32eca1a98c4a6600892 Parents: d08c7c8 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Fri Feb 14 11:19:26 2014 +0200 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Fri Feb 14 11:20:09 2014 +0200 ---------------------------------------------------------------------- wicket-core/src/main/java/org/apache/wicket/Session.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/83578b30/wicket-core/src/main/java/org/apache/wicket/Session.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/Session.java b/wicket-core/src/main/java/org/apache/wicket/Session.java index 4ae07e2..a9003c9 100644 --- a/wicket-core/src/main/java/org/apache/wicket/Session.java +++ b/wicket-core/src/main/java/org/apache/wicket/Session.java @@ -94,8 +94,8 @@ import org.slf4j.LoggerFactory; * <li><b>Page Factory</b> - A pluggable implementation of {@link IPageFactory} is used to * instantiate pages for the session. * - * <li><b>Removal</b> - Pages can be removed from the Session forcibly by calling remove(Page) or - * removeAll(), although such an action should rarely be necessary. + * <li><b>Removal</b> - Pages can be removed from the Session forcibly by calling clear(), + * although such an action should rarely be necessary. * * <li><b>Flash Messages</b> - Flash messages are messages that are stored in session and are removed * after they are displayed to the user. Session acts as a store for these messages because they can
