Skip to content

Commit

Permalink
Remove non-Java 11 compliant code.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Aug 10, 2021
1 parent 4665656 commit 9fee53a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void connect() throws IOException {
final ProcessBuilder processBuilder = new ProcessBuilder();
processBuilder.command("ngrok", "start", "--none");
proc = processBuilder.start();
var task = new ProcessTask(proc.getInputStream());
final ProcessTask task = new ProcessTask(proc.getInputStream());
future = executorService.submit(task);
}

Expand Down

0 comments on commit 9fee53a

Please sign in to comment.