Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

expects all the subclasses to override in the multi level inheritance #7

Open
dayananth opened this issue Mar 24, 2016 · 0 comments
Open

Comments

@dayananth
Copy link

It expects implementation of the "should override" methods in every child class in the hierarchy. We faced an issue in the following condition

Class GrandParent{ method(){ SUBCLASS_MUST_OVERRIDE; } }

Class Parent extends SuperClass{ method(){ // actual implementation } }

Class Child extends parent{ }

Plugin expects Class "Child" to implement "must override" method. But in this case this method is already implemented in Class "Parent" which is the super class of "Child" class;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant