Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
vkorukanti committed Aug 22, 2023
1 parent 472d32a commit a667ad9
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public List<Expression> children() {
* {@code AND} expression
* <ul>
* <li>Logical {@code expr1} AND {@code expr2} on two inputs.</li>
* <li>Requires both left and right input expressions evaluate to be {@link Predicate}.</li>
* <li>Requires both left and right inputs evaluate to be {@link Predicate}.</li>
* <li>Result is null if one or both of the inputs are null.</li>
* </ul>
*/
Expand All @@ -145,7 +145,7 @@ public List<Expression> children() {
* {@code OR} expression
* <ul>
* <li>Logical {@code expr1} OR {@code expr2} on two inputs.</li>
* <li>Requires both left and right input expressions evaluate to be {@link Predicate}.</li>
* <li>Requires both left and right input evaluate to be {@link Predicate}.</li>
* <li>Result is null if one or both of the inputs are null.</li>
* </ul>
*/
Expand Down Expand Up @@ -183,6 +183,7 @@ private static void validatePredicateExpression(String name, List<Expression> ch
checkArgument(
children.isEmpty(),
"operator %s expected no arguments, but got %d", name, children.size());
break;
default:
throw new UnsupportedOperationException(
"predicate expression not supported: " + name);
Expand Down

0 comments on commit a667ad9

Please sign in to comment.