summaryrefslogtreecommitdiffstats
path: root/vespajlib
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2022-10-07 10:42:36 +0200
committerjonmv <venstad@gmail.com>2022-10-10 12:33:57 +0200
commitd7a8d6e225297b81bc8769d308dd06084f87c19d (patch)
treed93b5117c906082d4b951ecf61c1c981197f03d6 /vespajlib
parentb26f014bc004e2d837e8100161ee70fe7d612fa6 (diff)
Correctly propagate argument in UncheckedInterruptedException
Diffstat (limited to 'vespajlib')
-rw-r--r--vespajlib/src/main/java/com/yahoo/yolean/UncheckedInterruptedException.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/yolean/UncheckedInterruptedException.java b/vespajlib/src/main/java/com/yahoo/yolean/UncheckedInterruptedException.java
index d3317b5fb26..934a1b17c70 100644
--- a/vespajlib/src/main/java/com/yahoo/yolean/UncheckedInterruptedException.java
+++ b/vespajlib/src/main/java/com/yahoo/yolean/UncheckedInterruptedException.java
@@ -17,7 +17,7 @@ public class UncheckedInterruptedException extends RuntimeException {
this(cause.toString(), cause, restoreInterruptFlags);
}
- public UncheckedInterruptedException(String message, boolean restoreInterruptFlag) { this(message, null, false); }
+ public UncheckedInterruptedException(String message, boolean restoreInterruptFlag) { this(message, null, restoreInterruptFlag); }
public UncheckedInterruptedException(String message, InterruptedException cause) { this(message, cause, false); }