Skip to content

Commit

Permalink
ARTEMIS-4522 remove System.outs
Browse files Browse the repository at this point in the history
  • Loading branch information
jbertram committed Dec 21, 2023
1 parent b24f9b2 commit c089e72
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ public static synchronized void clearThreadPools(long time, TimeUnit unit) {
}

if (globalThreadPool != null) {
System.out.println("Shutting down main pool...");
globalThreadPool.shutdownNow();
try {
if (!globalThreadPool.awaitTermination(time, unit)) {
Expand All @@ -194,7 +193,6 @@ public static synchronized void clearThreadPools(long time, TimeUnit unit) {
}

if (globalScheduledThreadPool != null) {
System.out.println("Shutting down scheduled pool...");
globalScheduledThreadPool.shutdownNow();
try {
if (!globalScheduledThreadPool.awaitTermination(time, unit)) {
Expand All @@ -209,7 +207,6 @@ public static synchronized void clearThreadPools(long time, TimeUnit unit) {
}

if (globalFlowControlThreadPool != null) {
System.out.println("Shutting down flow-control pool...");
globalFlowControlThreadPool.shutdownNow();
try {
if (!globalFlowControlThreadPool.awaitTermination(time, unit)) {
Expand Down

0 comments on commit c089e72

Please sign in to comment.