Skip to content

Commit

Permalink
Polishing #1507
Browse files Browse the repository at this point in the history
Remove system.out call
  • Loading branch information
mp911de committed Jan 14, 2021
1 parent 26e230e commit 1de2cf7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/io/lettuce/core/RedisCommandBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
import io.lettuce.core.protocol.BaseRedisCommandBuilder;
import io.lettuce.core.protocol.Command;
import io.lettuce.core.protocol.CommandArgs;
import io.lettuce.core.protocol.CommandKeyword;
import io.lettuce.core.protocol.CommandType;
import io.lettuce.core.protocol.RedisCommand;

Expand Down Expand Up @@ -2695,7 +2694,6 @@ Command<K, V, List<V> > zdiff(K... keys) {

CommandArgs<K, V> args = new CommandArgs<>(codec);
args.add(keys.length).addKeys(keys);
System.out.println(args);
return createCommand(ZDIFF, new ValueListOutput<>(codec), args);
}

Expand Down

0 comments on commit 1de2cf7

Please sign in to comment.