dokka icon indicating copy to clipboard operation
dokka copied to clipboard

Interface companion objects still rendered when they should not be

Open Seggan opened this issue 3 months ago • 0 comments

In the kotlin-as-java-plugin, whenever an interface has a companion object that companion object is still rendered even if it shouldn't be, for example if all its members are private or @JvmStatic

This code:

interface Test {
    companion object {}
}

Renders as such:

Image

Seggan avatar Sep 20 '25 20:09 Seggan