From 437a3dac01f28dca9fc0e288c26ec308ace76991 Mon Sep 17 00:00:00 2001 From: wrongwrong Date: Sun, 1 Mar 2020 12:37:02 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/vcs.xml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .idea/vcs.xml diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file From f2d4c7935693a376e53c67667dbb6aee55f4d6d5 Mon Sep 17 00:00:00 2001 From: wrongwrong Date: Sun, 1 Mar 2020 12:37:15 +0900 Subject: [PATCH 2/2] =?UTF-8?q?internal=E3=81=AE=E8=A7=A3=E9=99=A4?= =?UTF-8?q?=E5=BF=98=E3=82=8C=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/com/mapk/core/KFunctionWithInstance.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/mapk/core/KFunctionWithInstance.kt b/src/main/kotlin/com/mapk/core/KFunctionWithInstance.kt index 1431a7f..def35dc 100644 --- a/src/main/kotlin/com/mapk/core/KFunctionWithInstance.kt +++ b/src/main/kotlin/com/mapk/core/KFunctionWithInstance.kt @@ -5,7 +5,7 @@ import kotlin.reflect.KParameter import kotlin.reflect.full.instanceParameter import kotlin.reflect.jvm.isAccessible -internal class KFunctionWithInstance( +class KFunctionWithInstance( private val function: KFunction, private val instance: Any ) : KFunction by function {