@deprecated vs @Deprecated

Viewed 40600

I'm able to deprecate a function or class with the @Deprecated annotation.

But there is a @deprecated javadoc tag in a javadoc comment itself marking the class/function as deprecated. Does the @deprecated javadoc tag actually make the class/function deprecated?

2 Answers
Related