Closed
Description
Hi Team,
Below there is a code snippet from DefaultRedisSerializationContext
,line 130. The string()
method assign param tuple
to hashValueTuple
, it should be assigned stringTuple
I think.
@Override
public RedisSerializationContextBuilder<K, V> hashValue(SerializationPair<?> tuple) {
Assert.notNull(tuple, "SerializationPair must not be null");
this.hashValueTuple = tuple;
return this;
}
@Override
public RedisSerializationContextBuilder<K, V> string(SerializationPair<String> tuple) {
Assert.notNull(tuple, "SerializationPair must not be null");
this.hashValueTuple = tuple;
return this;
}