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
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;
The text was updated successfully, but these errors were encountered:
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;
The text was updated successfully, but these errors were encountered: