aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/android/volley/Cache.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/android/volley/Cache.java')
-rw-r--r--src/main/java/com/android/volley/Cache.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/com/android/volley/Cache.java b/src/main/java/com/android/volley/Cache.java
index 35b2a96..b8908ac 100644
--- a/src/main/java/com/android/volley/Cache.java
+++ b/src/main/java/com/android/volley/Cache.java
@@ -16,6 +16,7 @@
package com.android.volley;
+import androidx.annotation.Nullable;
import java.util.Collections;
import java.util.List;
import java.util.Map;
@@ -28,6 +29,7 @@ public interface Cache {
* @param key Cache key
* @return An {@link Entry} or null in the event of a cache miss
*/
+ @Nullable
Entry get(String key);
/**