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.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/com/android/volley/Cache.java b/src/main/java/com/android/volley/Cache.java
index f1ec757..8482c22 100644
--- a/src/main/java/com/android/volley/Cache.java
+++ b/src/main/java/com/android/volley/Cache.java
@@ -28,43 +28,43 @@ public interface Cache {
* @param key Cache key
* @return An {@link Entry} or null in the event of a cache miss
*/
- public Entry get(String key);
+ Entry get(String key);
/**
* Adds or replaces an entry to the cache.
* @param key Cache key
* @param entry Data to store and metadata for cache coherency, TTL, etc.
*/
- public void put(String key, Entry entry);
+ void put(String key, Entry entry);
/**
* Performs any potentially long-running actions needed to initialize the cache;
* will be called from a worker thread.
*/
- public void initialize();
+ void initialize();
/**
* Invalidates an entry in the cache.
* @param key Cache key
* @param fullExpire True to fully expire the entry, false to soft expire
*/
- public void invalidate(String key, boolean fullExpire);
+ void invalidate(String key, boolean fullExpire);
/**
* Removes an entry from the cache.
* @param key Cache key
*/
- public void remove(String key);
+ void remove(String key);
/**
* Empties the cache.
*/
- public void clear();
+ void clear();
/**
* Data and metadata for an entry returned by the cache.
*/
- public static class Entry {
+ class Entry {
/** The data returned from cache. */
public byte[] data;