Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit 72113bc

Browse files
committed
フォーマット修正
1 parent 959a1f7 commit 72113bc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/kotlin/com/mapk/krowmapper/KRowMapper.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ import kotlin.reflect.KClass
77
import kotlin.reflect.KFunction
88
import org.springframework.jdbc.core.RowMapper
99

10-
class KRowMapper<T : Any> private constructor(
11-
private val function: KFunctionForCall<T>
12-
) : RowMapper<T> {
10+
class KRowMapper<T : Any> private constructor(private val function: KFunctionForCall<T>) : RowMapper<T> {
1311
constructor(function: KFunction<T>, parameterNameConverter: ((String) -> String)? = null) : this(
1412
KFunctionForCall(function, parameterNameConverter)
1513
)

0 commit comments

Comments
 (0)