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

Commit 02d88d1

Browse files
committed
propertyのままになっていた部分を修正
1 parent 2332a7d commit 02d88d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/com/mapk/kmapper/BoundKMapper.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ class BoundKMapper<S : Any, D> private constructor(
2121
src: KClass<S>,
2222
parameterNameConverter: (String) -> String = { it }
2323
) {
24-
constructor(function: KFunction<D>, src: KClass<S>, propertyNameConverter: (String) -> String = { it }) : this(
25-
KFunctionForCall(function), src, propertyNameConverter
24+
constructor(function: KFunction<D>, src: KClass<S>, parameterNameConverter: (String) -> String = { it }) : this(
25+
KFunctionForCall(function), src, parameterNameConverter
2626
)
2727

2828
private val parameters: List<BoundParameterForMap<S>>

0 commit comments

Comments
 (0)