This is an automated email from the ASF dual-hosted git repository. svenmeier pushed a commit to branch wicket-8.x in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/wicket-8.x by this push: new f8b7a24 WICKET-6755 clean up f8b7a24 is described below commit f8b7a2474144d2fb8fa8b6e7ed8306c420ff936f Author: Sven Meier <svenme...@apache.org> AuthorDate: Mon Mar 16 09:55:22 2020 +0100 WICKET-6755 clean up --- .../java/org/apache/wicket/protocol/http/mock/MockServletContext.java | 1 - 1 file changed, 1 deletion(-) diff --git a/wicket-core/src/main/java/org/apache/wicket/protocol/http/mock/MockServletContext.java b/wicket-core/src/main/java/org/apache/wicket/protocol/http/mock/MockServletContext.java index 99bb465..d360d6c 100755 --- a/wicket-core/src/main/java/org/apache/wicket/protocol/http/mock/MockServletContext.java +++ b/wicket-core/src/main/java/org/apache/wicket/protocol/http/mock/MockServletContext.java @@ -408,7 +408,6 @@ public class MockServletContext implements ServletContext try { URL url = getResource(name); if (url != null) { - url.getFile(); // WICKET-6755 do not use url.getFile() as it does not properly decode the path return new File(url.toURI()).getAbsolutePath(); }