Skip to content

Commit e47a398

Browse files
update format
1 parent db38825 commit e47a398

File tree

5 files changed

+5
-15
lines changed

5 files changed

+5
-15
lines changed

ktorm-support-mysql/src/main/kotlin/org/ktorm/support/mysql/MySqlDialect.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ public open class MySqlDialect : SqlDialect {
3636
* [SqlFormatter] implementation for MySQL, formatting SQL expressions as strings with their execution arguments.
3737
*/
3838
public open class MySqlFormatter(
39-
database: Database,
40-
beautifySql: Boolean,
41-
indentSize: Int
39+
database: Database, beautifySql: Boolean, indentSize: Int
4240
) : SqlFormatter(database, beautifySql, indentSize) {
4341

4442
override fun visit(expr: SqlExpression): SqlExpression {

ktorm-support-oracle/src/main/kotlin/org/ktorm/support/oracle/OracleDialect.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ public open class OracleDialect : SqlDialect {
3636
* [SqlFormatter] implementation for Oracle, formatting SQL expressions as strings with their execution arguments.
3737
*/
3838
public open class OracleFormatter(
39-
database: Database,
40-
beautifySql: Boolean,
41-
indentSize: Int
39+
database: Database, beautifySql: Boolean, indentSize: Int
4240
) : SqlFormatter(database, beautifySql, indentSize) {
4341

4442
override fun checkColumnName(name: String) {

ktorm-support-postgresql/src/main/kotlin/org/ktorm/support/postgresql/PostgreSqlDialect.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ public open class PostgreSqlDialect : SqlDialect {
3535
* [SqlFormatter] implementation for PostgreSQL, formatting SQL expressions as strings with their execution arguments.
3636
*/
3737
public open class PostgreSqlFormatter(
38-
database: Database,
39-
beautifySql: Boolean,
40-
indentSize: Int
38+
database: Database, beautifySql: Boolean, indentSize: Int
4139
) : SqlFormatter(database, beautifySql, indentSize) {
4240

4341
override fun checkColumnName(name: String) {

ktorm-support-sqlite/src/main/kotlin/org/ktorm/support/sqlite/SQLiteDialect.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@ public open class SQLiteDialect : SqlDialect {
6060
* [SqlFormatter] implementation for SQLite, formatting SQL expressions as strings with their execution arguments.
6161
*/
6262
public open class SQLiteFormatter(
63-
database: Database,
64-
beautifySql: Boolean,
65-
indentSize: Int
63+
database: Database, beautifySql: Boolean, indentSize: Int
6664
) : SqlFormatter(database, beautifySql, indentSize) {
6765

6866
override fun writePagination(expr: QueryExpression) {

ktorm-support-sqlserver/src/main/kotlin/org/ktorm/support/sqlserver/SqlServerDialect.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ public open class SqlServerDialect : SqlDialect {
3535
* [SqlFormatter] implementation for SqlServer, formatting SQL expressions as strings with their execution arguments.
3636
*/
3737
public open class SqlServerFormatter(
38-
database: Database,
39-
beautifySql: Boolean,
40-
indentSize: Int
38+
database: Database, beautifySql: Boolean, indentSize: Int
4139
) : SqlFormatter(database, beautifySql, indentSize) {
4240

4341
override fun checkColumnName(name: String) {

0 commit comments

Comments
 (0)