Skip to content

Commit 23ff8cd

Browse files
jjz921024mp911de
authored andcommitted
Remove duplicate map keys in Lettuce TypeHints.
Closes #2314
1 parent 9eb7c43 commit 23ff8cd

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/org/springframework/data/redis/connection/lettuce/LettuceConnection.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1185,7 +1185,6 @@ static class TypeHints {
11851185
COMMAND_OUTPUT_TYPE_MAPPING.put(DECR, IntegerOutput.class);
11861186
COMMAND_OUTPUT_TYPE_MAPPING.put(DECRBY, IntegerOutput.class);
11871187
COMMAND_OUTPUT_TYPE_MAPPING.put(DEL, IntegerOutput.class);
1188-
COMMAND_OUTPUT_TYPE_MAPPING.put(COPY, IntegerOutput.class);
11891188
COMMAND_OUTPUT_TYPE_MAPPING.put(GETBIT, IntegerOutput.class);
11901189
COMMAND_OUTPUT_TYPE_MAPPING.put(HDEL, IntegerOutput.class);
11911190
COMMAND_OUTPUT_TYPE_MAPPING.put(HINCRBY, IntegerOutput.class);
@@ -1228,7 +1227,6 @@ static class TypeHints {
12281227
// DOUBLE
12291228
COMMAND_OUTPUT_TYPE_MAPPING.put(HINCRBYFLOAT, DoubleOutput.class);
12301229
COMMAND_OUTPUT_TYPE_MAPPING.put(INCRBYFLOAT, DoubleOutput.class);
1231-
COMMAND_OUTPUT_TYPE_MAPPING.put(MGET, ValueListOutput.class);
12321230
COMMAND_OUTPUT_TYPE_MAPPING.put(ZINCRBY, DoubleOutput.class);
12331231
COMMAND_OUTPUT_TYPE_MAPPING.put(ZSCORE, DoubleOutput.class);
12341232

0 commit comments

Comments
 (0)