Skip to content

Commit

Permalink
Remove debug printout
Browse files Browse the repository at this point in the history
  • Loading branch information
marci4 committed Jan 1, 2025
1 parent ff22449 commit 98695a4
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/test/java/org/java_websocket/util/ThreadCheck.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,6 @@ public static Map<Long, Thread> getThreadMap() {
for (int i = 0; i < actualNb; i++) {
if (threads[i].getName().contains("WebSocket")) {
map.put(threads[i].getId(), threads[i]);
}else {
String name = threads[i].getName();
if (name.equals("main") || name.equals("Monitor Ctrl-Break") || name.equals("junit-jupiter-timeout-watcher"))
continue;
System.out.println();
}
}
return map;
Expand Down

0 comments on commit 98695a4

Please sign in to comment.