We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The ticket is the same as #3384 but only about 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 kdoc from the interface
JavaNetCookieJar
In K2 it is missed on the class page:
The text was updated successfully, but these errors were encountered:
vmishenev
Successfully merging a pull request may close this issue.
The ticket is the same as #3384 but only about KDoc
With K1 the

JavaNetCookieJar
got kdoc from the interfaceIn K2 it is missed on the class page:

The text was updated successfully, but these errors were encountered: