Skip to content

Commit

Permalink
Fix list equality logic
Browse files Browse the repository at this point in the history
  • Loading branch information
antvaset committed Jul 23, 2024
1 parent 96b04c1 commit baf5f96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public static Boolean equal(Iterable<?> left, Iterable<?> right, State state) {
return equal((Iterable<?>) leftObject, (Iterable<?>) rightObject, state);
}
if (leftObject == null && rightObject == null) {
return true;
continue;
}
Boolean elementEquals = EqualEvaluator.equal(leftObject, rightObject, state);
if (elementEquals == null || !elementEquals) {
Expand Down

0 comments on commit baf5f96

Please sign in to comment.