Skip to content

Commit 2d42338

Browse files
authored
Deprecate unused JSON.ARRAPPEND in CommandObjects (#3798)
Update CommandObjects.java
1 parent 7a5bce1 commit 2d42338

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: src/main/java/redis/clients/jedis/CommandObjects.java

+1
Original file line numberDiff line numberDiff line change
@@ -3623,6 +3623,7 @@ public final CommandObject<Double> jsonNumIncrBy(String key, Path path, double v
36233623
return new CommandObject<>(commandArguments(JsonCommand.NUMINCRBY).key(key).add(path).add(value), BuilderFactory.DOUBLE);
36243624
}
36253625

3626+
@Deprecated
36263627
public final CommandObject<Long> jsonArrAppend(String key, String path, JSONObject... objects) {
36273628
CommandArguments args = commandArguments(JsonCommand.ARRAPPEND).key(key).add(path);
36283629
for (Object object : objects) {

0 commit comments

Comments
 (0)