Lets say we have below methods which is deprecated. If there is no use of this particular method. why don't we remove it or comment this line of code?
/**
* Does some thing in old style.
*
* @deprecated use {@link #new()} instead.
*/
@Deprecated
public void old() {
// ...
}