Skip to content

Instantly share code, notes, and snippets.

@macu
Last active August 29, 2015 14:25
Show Gist options
  • Select an option

  • Save macu/57a3fee230b1bac67211 to your computer and use it in GitHub Desktop.

Select an option

Save macu/57a3fee230b1bac67211 to your computer and use it in GitHub Desktop.
How to mark deprecated in Java. http://stackoverflow.com/a/9031854
/**
* You shouldn't call this method anymore.
*
* Don't forget to add a clarifying javadoc field for the programmer:
*
* @deprecated Use {@link #new()} instead.
*/
@Deprecated
public void old() {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment