aboutsummaryrefslogtreecommitdiff
path: root/guava-testlib/src/com/google/common/testing/NullPointerTester.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-testlib/src/com/google/common/testing/NullPointerTester.java')
-rw-r--r--guava-testlib/src/com/google/common/testing/NullPointerTester.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/guava-testlib/src/com/google/common/testing/NullPointerTester.java b/guava-testlib/src/com/google/common/testing/NullPointerTester.java
index cd0dd15a6..785870cdd 100644
--- a/guava-testlib/src/com/google/common/testing/NullPointerTester.java
+++ b/guava-testlib/src/com/google/common/testing/NullPointerTester.java
@@ -473,7 +473,8 @@ public final class NullPointerTester {
}
private static final ImmutableSet<String> NULLABLE_ANNOTATION_SIMPLE_NAMES =
- ImmutableSet.of("CheckForNull", "Nullable", "NullableDecl", "NullableType");
+ ImmutableSet.of(
+ "CheckForNull", "Nullable", "NullableDecl", "NullableType", "ParametricNullness");
static boolean isNullable(Invokable<?, ?> invokable) {
return isNullable(invokable.getAnnotatedReturnType().getAnnotations())