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.
1 parent 11093b8 commit 61fe4fdCopy full SHA for 61fe4fd
src/main/java/org/springframework/data/redis/core/AbstractOperations.java
@@ -178,7 +178,7 @@ <HK> byte[][] rawHashKeys(HK... hashKeys) {
178
@SuppressWarnings("unchecked")
179
<HV> byte[] rawHashValue(HV value) {
180
181
- if (hashValueSerializer() == null & value instanceof byte[]) {
+ if (hashValueSerializer() == null && value instanceof byte[]) {
182
return (byte[]) value;
183
}
184
return hashValueSerializer().serialize(value);
0 commit comments