Issue #206 suppress noisy exceptions in "quiteSleep()" method.

pull/212/head
Brett Wooldridge 10 years ago
parent 5a90be9199
commit 87be723621

@ -103,7 +103,7 @@ public final class PoolUtilities
Thread.sleep(millis);
}
catch (InterruptedException e) {
throw new RuntimeException(e);
// I said be quiet!
}
}

@ -85,7 +85,7 @@ public final class PoolUtilities
Thread.sleep(millis);
}
catch (InterruptedException e) {
throw new RuntimeException(e);
// I said be quiet!
}
}

Loading…
Cancel
Save