Skip to content

Commit 1f53638

Browse files
committed
refactor: remove unused method 'nullSafeDeserializedStoreValue
1 parent b975572 commit 1f53638

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/main/java/org/springframework/data/redis/cache/RedisCache.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -425,10 +425,6 @@ private CompletableFuture<ValueWrapper> retrieveValue(Object key) {
425425
.thenApply(this::toValueWrapper);
426426
}
427427

428-
@Nullable
429-
private Object nullSafeDeserializedStoreValue(@Nullable byte[] value) {
430-
return value != null ? fromStoreValue(deserializeCacheValue(value)) : null;
431-
}
432428

433429
private boolean hasToStringMethod(Object target) {
434430
return hasToStringMethod(target.getClass());

0 commit comments

Comments
 (0)