We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
null
AbstractOperations.deserializeGeoResults(…)
1 parent 620ba46 commit 5cbee3cCopy full SHA for 5cbee3c
src/main/java/org/springframework/data/redis/core/AbstractOperations.java
@@ -364,6 +364,10 @@ <HV> HV deserializeHashValue(byte[] value) {
364
*/
365
GeoResults<GeoLocation<V>> deserializeGeoResults(GeoResults<GeoLocation<byte[]>> source) {
366
367
+ if (source == null) {
368
+ return null;
369
+ }
370
+
371
if (valueSerializer() == null) {
372
return (GeoResults<GeoLocation<V>>) (Object) source;
373
}
0 commit comments