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

Commit 07f51dc

Browse files
committed
src::classの取得が2回行われていたため修正
1 parent 477d06c commit 07f51dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class KMapper<T : Any> private constructor(
4949

5050
val tempBinderArrayList = ArrayList<ArgumentBinder>()
5151

52-
src::class.memberProperties.forEach outer@{ property ->
52+
clazz.memberProperties.forEach outer@{ property ->
5353
// propertyが公開されていない場合は処理を行わない
5454
if (property.visibility != KVisibility.PUBLIC) return@outer
5555

0 commit comments

Comments
 (0)