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 b5d9982 commit 9df07ffCopy full SHA for 9df07ff
src/main/java/org/springframework/data/redis/core/AbstractOperations.java
@@ -389,6 +389,10 @@ <HV> HV deserializeHashValue(byte[] value) {
389
*/
390
GeoResults<GeoLocation<V>> deserializeGeoResults(GeoResults<GeoLocation<byte[]>> source) {
391
392
+ if (source == null) {
393
+ return null;
394
+ }
395
+
396
if (valueSerializer() == null) {
397
return (GeoResults<GeoLocation<V>>) (Object) source;
398
}
0 commit comments