Can I create an annotation like @deprecated, I mean, with legacy code?
I would like to create an annotation that indicates that some messages have been deleted from the communication protocol, so I do not want to use an outdated annotation because I want 1) to give a better and more suggestive name for my annotation, like "message deleted" 2) specify parameters for my annotation, for example (protocol = 5) - removed from protocol 5.
But I want this strikethrough code for others to know that this message has been deleted simply by looking at the code.
source
share