Skip to content

Commit

Permalink
address
Browse files Browse the repository at this point in the history
  • Loading branch information
xuyu committed Nov 7, 2024
1 parent 9ad4e26 commit d973c87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static void traverseCompoundPredicate(
Consumer<Predicate> unMatchConsumer) {
Preconditions.checkState(
predicate instanceof CompoundPredicate,
"PredicateUtils##handleCompoundPredicate should handle with a CompoundPredicate.");
"PredicateUtils.traverseCompoundPredicate only supports processing Predicates of CompoundPredicate type.");

CompoundPredicate compoundPredicate = (CompoundPredicate) predicate;
List<Predicate> children = compoundPredicate.children();
Expand Down

0 comments on commit d973c87

Please sign in to comment.