dokka
dokka copied to clipboard
Move text under @depracation tag to Deprecation block in Java sources
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:
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.