class Main {
    public static void main(String[] args) {
        Example ob = new Example();
        ob.read2();
        ob.read1();
    }
}

class Example {
  void read2 () {
    System.out.println("updated method");
  }
  
  @Deprecated
  void read1 () {
    System.out.println("outdated method");
  }
}
 
by