Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sazzad16 committed Dec 9, 2019
1 parent 516f84b commit 5c73701
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/redis/clients/jedis/PipelineBase.java
Expand Up @@ -1337,13 +1337,13 @@ public Response<Tuple> zpopmin(final byte[] key) {
}

@Override
public Response<Set<Tuple>> zpopmin(final byte[] key, final int count) {
public Response<Set<Tuple>> zpopmin(final String key, final int count) {
getClient(key).zpopmin(key, count);
return getResponse(BuilderFactory.TUPLE_ZSET);
}

@Override
public Response<Set<Tuple>> zpopmin(final String key, final int count) {
public Response<Set<Tuple>> zpopmin(final byte[] key, final int count) {
getClient(key).zpopmin(key, count);
return getResponse(BuilderFactory.TUPLE_ZSET);
}
Expand Down

0 comments on commit 5c73701

Please sign in to comment.