Skip to content

Commit 1bc748a

Browse files
committed
Formatting
1 parent 604bcef commit 1bc748a

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

liquidjava-verifier/src/main/java/liquidjava/rj_language/SimplifiedPredicate.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
* Represents a predicate simplified from another predicate. Stores the original predicate and any variables that must
1111
* be reintroduced as binders when relating the simplified predicate back to its origin.
1212
* <p>
13-
* For example, simplifying {@code x == 1 && y > x} with binders {@code x: int, y: int} may produce
14-
* {@code y > 1}. The origin {@code x == 1 && y > x} and binder {@code x: int} are kept so we can relate the simplified predicate back to the original.
13+
* For example, simplifying {@code x == 1 && y > x} with binders {@code x: int, y: int} may produce {@code y > 1}. The
14+
* origin {@code x == 1 && y > x} and binder {@code x: int} are kept so we can relate the simplified predicate back to
15+
* the original.
1516
*/
1617
public class SimplifiedPredicate extends Predicate {
1718

liquidjava-verifier/src/main/java/liquidjava/rj_language/ast/formatter/ExpressionFormatter.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,8 @@ private String formatArguments(List<Expression> args) {
6161
}
6262

6363
private Expression unwrapGroup(Expression expression) {
64-
while (expression instanceof GroupExpression group) {
64+
while (expression instanceof GroupExpression group)
6565
expression = group.getExpression();
66-
}
6766
return expression;
6867
}
6968

0 commit comments

Comments
 (0)