dokka
dokka copied to clipboard
[K2] Methods implemented by delegation miss the `override` keyword and KDoc
interface CookieJar {
/**
* Saves cookies
*/
fun saveFromResponse(url: String)
}
class CookieJarImpl() : CookieJar {
override fun saveFromResponse(url: String) {}
}
class JavaNetCookieJar private constructor(
delegate: CookieJarImpl,
) : CookieJar by delegate
With K1 the JavaNetCookieJar
got override
keyword and kdoc from the interface
In K2 both are missed:
Installation
- Dokka version: 1.9.20
Parent: https://github.com/Kotlin/dokka/issues/3328