Java @Deprecated annotation example

Java @Deprecated annotation example
class Main {
  /**
   * @deprecated
   * This method is deprecated and has been replaced by newMethod()
   */
  @Deprecated
  public static void deprecatedMethod() { 
    System.out.println("Deprecated method"); 
  } 

  public static void main(String args[]) {
    deprecatedMethod();
  }
}
Sou‮r‬ce:www.lautturi.com
Created Time:2017-09-18 14:27:21  Author:lautturi