Skip to content

Commit

Permalink
spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
not-napoleon committed Mar 19, 2024
1 parent 133bc5b commit 79778e2
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1661,7 +1661,11 @@ public void testIsNullAndMultipleComparison() throws Exception {
FieldAttribute fa = getFieldAttribute();
IsNull isNull = new IsNull(EMPTY, fa);

And nestedAnd = new And(EMPTY, lessThanOf(TestUtils.getFieldAttribute("b"), ONE), lessThanOf(TestUtils.getFieldAttribute("c"), ONE));
And nestedAnd = new And(
EMPTY,
lessThanOf(TestUtils.getFieldAttribute("b"), ONE),
lessThanOf(TestUtils.getFieldAttribute("c"), ONE)
);
And and = new And(EMPTY, isNull, nestedAnd);
And top = new And(EMPTY, and, lessThanOf(fa, ONE));

Expand Down

0 comments on commit 79778e2

Please sign in to comment.