mozilla-mobile / gradle-apilint

Gradle Plugin that tracks the API of an Android library and helps maintain backward compatibility.
Mozilla Public License 2.0
8 stars 9 forks source link

java.lang.annotation.Annotation outline is incorrect #9

Closed agi90 closed 6 years ago

agi90 commented 6 years ago

apidoc generates an incorrect outline for Annotation, e.g.:

public static interface class Annotation implements java.lang.annotation.Annotation {

Notice the interface class part. The correct one would be something like:

public static interface Annotation implements java.lang.annotation.Annotation {