dokka icon indicating copy to clipboard operation
dokka copied to clipboard

Move text under @depracation tag to Deprecation block in Java sources

Open atyrin opened this issue 2 years ago • 0 comments

For the Java code like:

public class DeprecatedJClass {
    /**
     * Don't do anything
     * @deprecated
     * This method is no longer acceptable to compute time between versions.
     * <p> Use {@link DeprecatedJClass#getStringMethodNew()} instead.
     */
    @Deprecated(since = "18.0.2", forRemoval = true)
    public void getStringMethod(){}
    public void getStringMethodNew(){}
}

The HTML output look like: image

It seems like it would be nice to move the text from the Depreciation paragraph to the Deracation table to have everything in one place.

atyrin avatar Sep 13 '22 18:09 atyrin