Skip to content

Commit

Permalink
Tweak casing of zScanOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
jduo committed Jun 28, 2024
1 parent e2aeb07 commit a89a3f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/client/src/main/java/glide/api/BaseClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -2810,8 +2810,8 @@ public CompletableFuture<Object[]> zscan(@NonNull String key, String cursor) {

@Override
public CompletableFuture<Object[]> zscan(
@NonNull String key, String cursor, @NonNull ZScanOptions zscanOptions) {
String[] arguments = concatenateArrays(new String[] {key, cursor}, zscanOptions.toArgs());
@NonNull String key, String cursor, @NonNull ZScanOptions zScanOptions) {
String[] arguments = concatenateArrays(new String[] {key, cursor}, zScanOptions.toArgs());
return commandManager.submitNewCommand(ZScan, arguments, this::handleArrayResponse);
}
}

0 comments on commit a89a3f7

Please sign in to comment.