On Monday, 11 July 2016 at 12:42:57 UTC, ag0aep6g wrote:

Other than that, you could add a `package` method with a different name that just calls the `protected` one.

This is a pattern I have found useful, particularly when dealing with protected abstract methods, e.g.

package void someActon() { doSomeAction(); }
protected abstract void doSomeAction;

Reply via email to