Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <git@stefan-marr.de>
  • Loading branch information
smarr committed May 5, 2017
1 parent f7bfc9c commit 25a15b9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/tools/debugger/WebResourceHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ public void handle(final HttpExchange exchange) throws IOException {
switch (requestedFile) {
case "/ports.json":
String jsonPorts = "{\"dbgPort\":" + debuggerPort + ",\"tracePort\":" + tracePort + "\"}";
System.out.println(jsonPorts);
exchange.sendResponseHeaders(200, jsonPorts.length());
exchange.getResponseBody().write(jsonPorts.getBytes(Charset.forName("UTF-8")));
exchange.close();
Expand Down

0 comments on commit 25a15b9

Please sign in to comment.