Polishing.

Reformat code.

See #1007
Original pull request: #1079.
This commit is contained in:
Mark Paluch
2021-11-08 11:07:28 +01:00
parent bd8b3c63d9
commit 7e7e9d59c4
2 changed files with 2 additions and 2 deletions

View File

@@ -68,7 +68,6 @@ abstract class FilteredSingleConditionRenderSupport extends FilteredSubtreeVisit
return Delegation.delegateTo(visitor);
}
throw new IllegalStateException("Cannot provide visitor for " + segment);
}

View File

@@ -485,7 +485,8 @@ class SelectRendererUnitTests {
Table table = SQL.table("User");
Select select = StatementBuilder.select( //
Conditions.isGreater(table.column("age"), SQL.literalOf(18)) //
Conditions.isGreater(table.column("age"), SQL.literalOf(
18))
) //
.from(table) //
.build();