aboutsummaryrefslogtreecommitdiff
path: root/jimfs/src/main/java/com/google/common/jimfs/StandardAttributeProviders.java
diff options
context:
space:
mode:
Diffstat (limited to 'jimfs/src/main/java/com/google/common/jimfs/StandardAttributeProviders.java')
-rw-r--r--jimfs/src/main/java/com/google/common/jimfs/StandardAttributeProviders.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jimfs/src/main/java/com/google/common/jimfs/StandardAttributeProviders.java b/jimfs/src/main/java/com/google/common/jimfs/StandardAttributeProviders.java
index 8683913..973c6bb 100644
--- a/jimfs/src/main/java/com/google/common/jimfs/StandardAttributeProviders.java
+++ b/jimfs/src/main/java/com/google/common/jimfs/StandardAttributeProviders.java
@@ -17,7 +17,7 @@
package com.google.common.jimfs;
import com.google.common.collect.ImmutableMap;
-import javax.annotation.Nullable;
+import org.checkerframework.checker.nullness.compatqual.NullableDecl;
/**
* Static registry of {@link AttributeProvider} implementations for the standard set of file
@@ -43,7 +43,7 @@ final class StandardAttributeProviders {
* Returns the attribute provider for the given view, or {@code null} if the given view is not one
* of the attribute views this supports.
*/
- @Nullable
+ @NullableDecl
public static AttributeProvider get(String view) {
AttributeProvider provider = PROVIDERS.get(view);