@deprecated
Javadoc tag but do not have the @java.lang.Deprecated
annotation.
Example:
/**
* @deprecated use {@code example()} instead
*/
void sample(){ }
After the quick-fix is applied:
/**
* @deprecated use {@code example()} instead
*/
@Deprecated
void sample(){ }
Use the checkbox below to report members annotated with @Deprecated
without
an explanation in a Javadoc @deprecated
tag.