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 0310f17 commit 71549a4Copy full SHA for 71549a4
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