aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/com/android/volley/utils/CacheTestUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/android/volley/utils/CacheTestUtils.java')
-rw-r--r--src/test/java/com/android/volley/utils/CacheTestUtils.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/java/com/android/volley/utils/CacheTestUtils.java b/src/test/java/com/android/volley/utils/CacheTestUtils.java
index 03a2909..49ab996 100644
--- a/src/test/java/com/android/volley/utils/CacheTestUtils.java
+++ b/src/test/java/com/android/volley/utils/CacheTestUtils.java
@@ -17,13 +17,13 @@
package com.android.volley.utils;
import com.android.volley.Cache;
-
import java.util.Random;
public class CacheTestUtils {
/**
* Makes a random cache entry.
+ *
* @param data Data to use, or null to use random data
* @param isExpired Whether the TTLs should be set such that this entry is expired
* @param needsRefresh Whether the TTLs should be set such that this entry needs refresh
@@ -45,8 +45,8 @@ public class CacheTestUtils {
}
/**
- * Like {@link #makeRandomCacheEntry(byte[], boolean, boolean)} but
- * defaults to an unexpired entry.
+ * Like {@link #makeRandomCacheEntry(byte[], boolean, boolean)} but defaults to an unexpired
+ * entry.
*/
public static Cache.Entry makeRandomCacheEntry(byte[] data) {
return makeRandomCacheEntry(data, false, false);