Skip to content

Commit 031502c

Browse files
committed
Checkstyle
1 parent acfca92 commit 031502c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/main/java/org/mybatis/dynamic/sql/SqlTable.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protected SqlTable(String tableName) {
3333
}
3434

3535
/**
36-
* Creates an SqlTable whose name can be changed at runtime
36+
* Creates an SqlTable whose name can be changed at runtime.
3737
*
3838
* @param tableNameSupplier table name supplier
3939
* @deprecated please use {@link AliasableSqlTable} if you need to change the table name at runtime
@@ -46,7 +46,7 @@ protected SqlTable(Supplier<String> tableNameSupplier) {
4646
}
4747

4848
/**
49-
* Creates an SqlTable whose name can be changed at runtime
49+
* Creates an SqlTable whose name can be changed at runtime.
5050
*
5151
* @param schemaSupplier schema supplier
5252
* @param tableName table name
@@ -58,7 +58,7 @@ protected SqlTable(Supplier<Optional<String>> schemaSupplier, String tableName)
5858
}
5959

6060
/**
61-
* Creates an SqlTable whose name can be changed at runtime
61+
* Creates an SqlTable whose name can be changed at runtime.
6262
*
6363
* @param catalogSupplier catalog supplier
6464
* @param schemaSupplier schema supplier

src/main/java/org/mybatis/dynamic/sql/select/QueryExpressionDSL.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,8 @@ public QueryExpressionHavingBuilder having(SqlCriterion initialCriterion, AndOrC
561561
return having(initialCriterion, Arrays.asList(subCriteria));
562562
}
563563

564-
public QueryExpressionHavingBuilder having(SqlCriterion initialCriterion, List<AndOrCriteriaGroup> subCriteria) {
564+
public QueryExpressionHavingBuilder having(SqlCriterion initialCriterion,
565+
List<AndOrCriteriaGroup> subCriteria) {
565566
return QueryExpressionDSL.this.having(initialCriterion, subCriteria);
566567
}
567568
}
@@ -599,7 +600,8 @@ public FromGatherer<R> selectDistinct(List<BasicColumn> selectList) {
599600
}
600601
}
601602

602-
public class QueryExpressionHavingBuilder extends AbstractBooleanExpressionDSL<QueryExpressionHavingBuilder> implements Buildable<R> {
603+
public class QueryExpressionHavingBuilder extends AbstractBooleanExpressionDSL<QueryExpressionHavingBuilder>
604+
implements Buildable<R> {
603605

604606
public QueryExpressionHavingBuilder(SqlCriterion initialCriterion) {
605607
setInitialCriterion(initialCriterion);

0 commit comments

Comments
 (0)