diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-04 16:12:55 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-05 11:31:49 +0200 |
commit | f124688cfdfbe96ff2be5ab44ea5023725548146 (patch) | |
tree | 4874bf2b2504979b9733f200e05b68034c7eaefe /xmlsecurity | |
parent | 36a74fe54a0cd99372ea646af31ce41ac5ec5b08 (diff) |
java: remove various unused variables
Change-Id: Id9f30938f594cb6fe73bf40adfffa65ec1b42cd1
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); |