Skip to content

Commit b5dd1d0

Browse files
committed
see 03/03 log
1 parent a00e379 commit b5dd1d0

File tree

2 files changed

+122
-122
lines changed

2 files changed

+122
-122
lines changed

utilcode/src/main/java/com/blankj/utilcode/util/CacheUtils.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public byte[] getBytes(@NonNull final String key, final byte[] defaultValue) {
211211
///////////////////////////////////////////////////////////////////////////
212212

213213
/**
214-
* Put string in cache.
214+
* Put string value in cache.
215215
*
216216
* @param key The key of cache.
217217
* @param value The value of cache.
@@ -221,7 +221,7 @@ public void put(@NonNull final String key, @NonNull final String value) {
221221
}
222222

223223
/**
224-
* Put string in cache.
224+
* Put string value in cache.
225225
*
226226
* @param key The key of cache.
227227
* @param value The value of cache.
@@ -232,21 +232,21 @@ public void put(@NonNull final String key, @NonNull final String value, final in
232232
}
233233

234234
/**
235-
* Return the string in cache.
235+
* Return the string value in cache.
236236
*
237237
* @param key The key of cache.
238-
* @return the string if cache exists or null otherwise
238+
* @return the string value if cache exists or null otherwise
239239
*/
240240
public String getString(@NonNull final String key) {
241241
return getString(key, null);
242242
}
243243

244244
/**
245-
* Return the string in cache.
245+
* Return the string value in cache.
246246
*
247247
* @param key The key of cache.
248248
* @param defaultValue The default value if the cache doesn't exist.
249-
* @return the string if cache exists or defaultValue otherwise
249+
* @return the string value if cache exists or defaultValue otherwise
250250
*/
251251
public String getString(@NonNull final String key, final String defaultValue) {
252252
byte[] bytes = getBytes(key);

0 commit comments

Comments
 (0)