Am 02/04/17 um 13:19 schrieb Michael Osipov:
> I will merge as-is without further modifiers.

Please watch out for this:

class A {

  @Deprecated
  void methodWithTypo()
  {
    this.methodWithoutTypo();
  }

  void methodWithoutType()
  {
    // do what the old method did
  }

}

External usage:

class B extends A {

  @Override
  void methodWithTypo()
  {
     // do something else
  }

}

We must not stop calling the deprecated methods because

// do something else

would no longer be called.

Regards,
-- 
Christian


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to