diff options
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java b/xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java index a9bd3cee9977..b191b5c1ee02 100644 --- a/xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java +++ b/xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java @@ -126,7 +126,6 @@ class MyHandler implements HttpHandler { public void handle(HttpExchange xchange) throws IOException { try { //First get the path to the file - File fileCurrent = new File("."); String sRequestPath = xchange.getRequestURI().getPath(); System.out.println("requested: " + sRequestPath); File fileRequest = new File(new File(".").getCanonicalPath(), sRequestPath); |