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

Commit 184a713

Browse files
committed
必要のなくなっていたデフォルト引数を削除
1 parent 485fc0d commit 184a713

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import org.springframework.jdbc.core.RowMapper
1111

1212
class KRowMapper<T : Any> private constructor(
1313
private val function: KFunctionForCall<T>,
14-
parameterNameConverter: (String) -> String = { it }
14+
parameterNameConverter: (String) -> String
1515
) : RowMapper<T> {
1616
constructor(function: KFunction<T>, propertyNameConverter: (String) -> String = { it }) : this(
1717
KFunctionForCall(function), propertyNameConverter

0 commit comments

Comments
 (0)