Skip to content

Commit a968b19

Browse files
jjz921024mp911de
authored andcommitted
Remove duplicate map keys in Lettuce TypeHints.
Closes #2314
1 parent ca4e5cd commit a968b19

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
@@ -1061,7 +1061,6 @@ static class TypeHints {
10611061
COMMAND_OUTPUT_TYPE_MAPPING.put(DECR, IntegerOutput.class);
10621062
COMMAND_OUTPUT_TYPE_MAPPING.put(DECRBY, IntegerOutput.class);
10631063
COMMAND_OUTPUT_TYPE_MAPPING.put(DEL, IntegerOutput.class);
1064-
COMMAND_OUTPUT_TYPE_MAPPING.put(COPY, IntegerOutput.class);
10651064
COMMAND_OUTPUT_TYPE_MAPPING.put(GETBIT, IntegerOutput.class);
10661065
COMMAND_OUTPUT_TYPE_MAPPING.put(HDEL, IntegerOutput.class);
10671066
COMMAND_OUTPUT_TYPE_MAPPING.put(HINCRBY, IntegerOutput.class);
@@ -1104,7 +1103,6 @@ static class TypeHints {
11041103
// DOUBLE
11051104
COMMAND_OUTPUT_TYPE_MAPPING.put(HINCRBYFLOAT, DoubleOutput.class);
11061105
COMMAND_OUTPUT_TYPE_MAPPING.put(INCRBYFLOAT, DoubleOutput.class);
1107-
COMMAND_OUTPUT_TYPE_MAPPING.put(MGET, ValueListOutput.class);
11081106
COMMAND_OUTPUT_TYPE_MAPPING.put(ZINCRBY, DoubleOutput.class);
11091107
COMMAND_OUTPUT_TYPE_MAPPING.put(ZSCORE, DoubleOutput.class);
11101108

0 commit comments

Comments
 (0)