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

Commit 08f1d81

Browse files
committed
スコープ修正
1 parent 2d71367 commit 08f1d81

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/kotlin/com/mapk/fastkfunction/argumentbucket/ArgumentBucket.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ class ArgumentBucket(
1616

1717
fun isFullInitialized(): Boolean = initializationStatuses.all { it }
1818

19-
fun getValueArray(): Array<Any?> = valueArrayGetter(valueArray)
19+
// getValueArrayは内部処理でしか利用しないためinternal化
20+
internal fun getValueArray(): Array<Any?> = valueArrayGetter(valueArray)
2021

2122
operator fun set(key: KParameter, value: Any?): Any? {
2223
return valueArray[key.index].apply {

0 commit comments

Comments
 (0)