Skip to content

Commit

Permalink
Minor: code review
Browse files Browse the repository at this point in the history
Co-authored-by: M Sazzadul Hoque <[email protected]>
  • Loading branch information
doumdoum and sazzad16 authored Mar 19, 2022
1 parent 7752a6a commit 19585d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/redis/clients/jedis/CommandObjects.java
Original file line number Diff line number Diff line change
Expand Up @@ -3568,8 +3568,8 @@ public final CommandObject<Boolean> cfExists(String key, String item) {
}

public final CommandObject<List<Boolean>> cfMExists(String key, String... items) {
return new CommandObject<>(commandArguments(CuckooFilterCommand.MEXISTS).key(key).
addObjects((Object[]) items), BuilderFactory.BOOLEAN_LIST);
return new CommandObject<>(commandArguments(CuckooFilterCommand.MEXISTS).key(key)
.addObjects((Object[]) items), BuilderFactory.BOOLEAN_LIST);
}

public final CommandObject<Boolean> cfDel(String key, String item) {
Expand Down

0 comments on commit 19585d4

Please sign in to comment.