#76 Cannot find methods with parameters [Kotlin/do...
# dokka
u
#76 Cannot find methods with parameters [Kotlin/dokka] Issue created by fschoellhammer dokka-android:0.9.8 Source code:
Copy code
/**
 * You ][eat] an [Apple] or you can cut it into slices using [cutIntoPieces]
 */
interface Apple {
    fun eat()

    fun cutIntoPieces(pieces: Int)
}
Outputs the following: Can't find node by signature jp.co.rakuten.sdtd.rcos.feed.Apple$cutIntoPieces(kotlin.Int) While method
eat
can be properly resolved, Dokka is unable to resolve
cutIntoPieces
(methods with parameters). The generated Javadoc does not contain cross links for methods with parameters.