You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An abstract Operation should not redefine a concrete Operation.
Details
An Operation redefinition corresponds to a different implementation of the method, but abstract methods do not specify implementation, therefore an abstract method should not redefine another method.
Tips
Make this Operation non-abstract.
Rework the inheritance graph to have abstract Operations on the upper part and concrete Operations on the lower part.