DepAnn
Item documented with a @deprecated javadoc note is not annotated with @Deprecated

Severity
ERROR

Alternate names: dep-ann

The problem

A declaration has the @deprecated Javadoc tag but no @Deprecated annotation. Please add an @Deprecated annotation to this declaration in addition to the @deprecated tag in the Javadoc.

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("DepAnn") to the enclosing element.