Skip to content

Commit

Permalink
Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Apr 25, 2024
1 parent 3e0b971 commit 8d1d28e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/apache/commons/lang3/ThreadUtils.java
Expand Up @@ -564,8 +564,8 @@ public static void sleep(final Duration duration) throws InterruptedException {
public static void sleepQuietly(final Duration duration) {
try {
sleep(duration);
} catch (final InterruptedException e) {
// be quiet.
} catch (final InterruptedException ignore) {
// Ignore & be quiet.
}
}

Expand Down

0 comments on commit 8d1d28e

Please sign in to comment.