summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/yolean/UncheckedInterruptedException.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespajlib/src/main/java/com/yahoo/yolean/UncheckedInterruptedException.java')
-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); }