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

Commit bdd6e0f

Browse files
committed
extensionReceiverはnon-nullが正しいため修正
1 parent d1b965c commit bdd6e0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/mapk/fastkfunction/FastKFunction.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ sealed class FastKFunction<T> {
8585
internal class TopLevelExtensionFunction<T>(
8686
private val function: KFunction<T>,
8787
private val method: Method,
88-
private val extensionReceiver: Any?,
88+
private val extensionReceiver: Any,
8989
override val bucketGenerator: BucketGenerator,
9090
override val valueParameters: List<KParameter>
9191
) : FastKFunction<T>() {

0 commit comments

Comments
 (0)