Updated Branches: refs/heads/master 69398a064 -> b50dcfed1
Expose the parsed filterPath to everyone interested (e.g. native web sockets) Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/a289b345 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/a289b345 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/a289b345 Branch: refs/heads/master Commit: a289b3458940aa6d478ad0ffd862da70889c11ee Parents: 69398a0 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Thu Jan 30 09:19:37 2014 +0100 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Thu Jan 30 09:19:37 2014 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/wicket/protocol/http/WicketFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/a289b345/wicket-core/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java b/wicket-core/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java index 9289d58..2573e63 100644 --- a/wicket-core/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java +++ b/wicket-core/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java @@ -558,7 +558,7 @@ public class WicketFilter implements Filter * * @return The configured filterPath. */ - protected String getFilterPath() + public String getFilterPath() { return filterPath; }
