Skip to content

Commit

Permalink
doc: Amend documentation to not reference deprecated constructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
nstdio committed May 1, 2024
1 parent 1e4d503 commit b35c204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ The parser can be simply enhanced by custom FIQL-like comparison operators, so y
[source, java]
----
Set<ComparisonOperator> operators = RSQLOperators.defaultOperators();
operators.add(new ComparisonOperator("=all=", true));
operators.add(new ComparisonOperator("=all=", Arity.of(1, Integer.MAX_VALUE)));
Node rootNode = new RSQLParser(operators).parse("genres=all=('thriller','sci-fi')");
----
Expand Down

0 comments on commit b35c204

Please sign in to comment.