I have a deprecated method in my class:
@Deprecated
public void deprecatedMethod() {
//do bad things
}
I don't want that method to appear in the javadoc. I know there's an option called -nodeprecated which:
"Prevents the generation of any deprecated API at all in the documentation."
So I'm using this option and it doesn't exclude the method from javadoc. Is it a bug in javadoc or am I using it wrong? What else can I do?
(I'm using eclipse 3.4.2 to produce javadoc)