Quick question:
Is the proper syntax:
public abstract void myMethod();
OR
abstract public void myMethod();
... The difference being the order of the keywords public
and abstract
.
Both compile without warnings, but which is the proper syntax?