Skip to content

Commit

Permalink
Ofc I forgot to remove the debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
e3ndr committed Aug 30, 2024
1 parent 1ca811d commit defb12f
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,6 @@ public int getPort() {
static <A, R> R executeBlocking(Function<A, R> toExecute, A arg) {
try {
return blockingExecutor.submit(() -> {
System.out.println(1111);
return toExecute.apply(arg);
}).get();
} catch (ExecutionException e) {
Expand Down

0 comments on commit defb12f

Please sign in to comment.