aboutsummaryrefslogtreecommitdiffstats
path: root/guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java')
-rw-r--r--guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java b/guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java
index cefe379..d821c84 100644
--- a/guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java
+++ b/guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java
@@ -16,8 +16,6 @@
package com.google.common.util.concurrent;
-import javax.annotation.Nullable;
-
/**
* Unchecked version of {@link java.util.concurrent.TimeoutException}.
*
@@ -27,15 +25,15 @@ import javax.annotation.Nullable;
public class UncheckedTimeoutException extends RuntimeException {
public UncheckedTimeoutException() {}
- public UncheckedTimeoutException(@Nullable String message) {
+ public UncheckedTimeoutException(String message) {
super(message);
}
- public UncheckedTimeoutException(@Nullable Throwable cause) {
+ public UncheckedTimeoutException(Throwable cause) {
super(cause);
}
- public UncheckedTimeoutException(@Nullable String message, @Nullable Throwable cause) {
+ public UncheckedTimeoutException(String message, Throwable cause) {
super(message, cause);
}