Skip to content

Commit bca1956

Browse files
committed
add newline at end of file
1 parent b7a7a66 commit bca1956

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

core/src/main/scala/scalikejdbc/async/AsyncDB.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ package scalikejdbc.async
1818
/**
1919
* Basic Database Accessor
2020
*/
21-
object AsyncDB extends NamedAsyncDB()
21+
object AsyncDB extends NamedAsyncDB()

core/src/main/scala/scalikejdbc/async/internal/MockPreparedStatement.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,4 @@ class MockPreparedStatement extends PreparedStatement {
128128
def unwrap[T](index: Class[T]): T = notSupported
129129

130130
private def notSupported = throw new RuntimeException("Not supported")
131-
}
131+
}

core/src/main/scala/scalikejdbc/async/internal/RowDataResultSet.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,4 +692,4 @@ private[scalikejdbc] class RowDataResultSet(var currentRow: Option[RowData], var
692692
private def shortOpt(columnIndex: Int): Option[Short] = opt[Short](nullableShort(columnIndex))
693693
private def shortOpt(columnLabel: String): Option[Short] = opt[Short](nullableShort(columnLabel))
694694

695-
}
695+
}

core/src/test/scala/parameterbinderfactory/Account.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ object Account extends SQLSyntaxSupport[Account] {
2525

2626
override lazy val columns = autoColumns[Account]()
2727
def apply(rn: ResultName[Account])(rs: WrappedResultSet): Account = autoConstruct(rs, rn)
28-
}
28+
}

core/src/test/scala/parameterbinderfactory/Person.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ object Person extends SQLSyntaxSupport[Person] {
2525

2626
override lazy val columns = autoColumns[Person]()
2727
def apply(rn: ResultName[Person])(rs: WrappedResultSet): Person = autoConstruct(rs, rn)
28-
}
28+
}

0 commit comments

Comments
 (0)