Closed agi90 closed 6 years ago
apidoc generates an incorrect outline for Annotation, e.g.:
apidoc
Annotation
public static interface class Annotation implements java.lang.annotation.Annotation {
Notice the interface class part. The correct one would be something like:
interface class
public static interface Annotation implements java.lang.annotation.Annotation {
apidoc
generates an incorrect outline forAnnotation
, e.g.:Notice the
interface class
part. The correct one would be something like: