Skip to content

Commit 98695a4

Browse files
committed
Remove debug printout
1 parent ff22449 commit 98695a4

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/test/java/org/java_websocket/util/ThreadCheck.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,6 @@ public static Map<Long, Thread> getThreadMap() {
9191
for (int i = 0; i < actualNb; i++) {
9292
if (threads[i].getName().contains("WebSocket")) {
9393
map.put(threads[i].getId(), threads[i]);
94-
}else {
95-
String name = threads[i].getName();
96-
if (name.equals("main") || name.equals("Monitor Ctrl-Break") || name.equals("junit-jupiter-timeout-watcher"))
97-
continue;
98-
System.out.println();
9994
}
10095
}
10196
return map;

0 commit comments

Comments
 (0)