removed obsolete method addIgnoreMountPath()
Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/52ac2de9 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/52ac2de9 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/52ac2de9 Branch: refs/heads/master Commit: 52ac2de9f72cda8fbac5c4bded45e10befc70ad2 Parents: 8389663 Author: svenmeier <[email protected]> Authored: Fri Jun 15 19:31:41 2012 +0200 Committer: svenmeier <[email protected]> Committed: Fri Jun 15 22:22:26 2012 +0200 ---------------------------------------------------------------------- .../wicket/protocol/http/WebApplication.java | 15 --------------- 1 files changed, 0 insertions(+), 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/52ac2de9/wicket-core/src/main/java/org/apache/wicket/protocol/http/WebApplication.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/protocol/http/WebApplication.java b/wicket-core/src/main/java/org/apache/wicket/protocol/http/WebApplication.java index 7627daf..9880d5f 100644 --- a/wicket-core/src/main/java/org/apache/wicket/protocol/http/WebApplication.java +++ b/wicket-core/src/main/java/org/apache/wicket/protocol/http/WebApplication.java @@ -384,21 +384,6 @@ public abstract class WebApplication extends Application } /** - * Partly unmounts/ignores a path that normally would map to another mount path. Like - * mount("/mypage", MyPage.class); and then "/mypage/arealdir" should be ignored. This can be - * done by calling unMount("/mypage/arealdir"); - * - * @param path - * the path that should be ignored. - * - */ - public final void addIgnoreMountPath(String path) - { - // WICKET-NG TODO how is this supposed to work :/ - throw new UnsupportedOperationException(); - } - - /** * Registers a replacement resource for the given javascript resource. This replacement can be * another {@link JavaScriptResourceReference} for a packaged resource, but it can also be an * {@link ExternalUrlResourceReference} to replace the resource by a resource hosted on a CDN.
