Skip to content

Commit 7e7e9d5

Browse files
committed
Polishing.
Reformat code. See #1007 Original pull request: #1079.
1 parent bd8b3c6 commit 7e7e9d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/render/FilteredSingleConditionRenderSupport.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ Delegation enterNested(Visitable segment) {
6868
return Delegation.delegateTo(visitor);
6969
}
7070

71-
7271
throw new IllegalStateException("Cannot provide visitor for " + segment);
7372
}
7473

spring-data-relational/src/test/java/org/springframework/data/relational/core/sql/render/SelectRendererUnitTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,8 @@ void shouldRenderConditionAsExpression() {
485485

486486
Table table = SQL.table("User");
487487
Select select = StatementBuilder.select( //
488-
Conditions.isGreater(table.column("age"), SQL.literalOf(18)) //
488+
Conditions.isGreater(table.column("age"), SQL.literalOf(
489+
18))
489490
) //
490491
.from(table) //
491492
.build();

0 commit comments

Comments
 (0)