Hi,
So let's say we have base class A
Class B is child of A
Class C is child of B
And let's say the base class A has a method with some
logic called commonMethod
In class B that extends A, I don't want to apply the logic in the common method so i overrided it and returned nth
Now in class C that extends B...i want the logic of the method in the base class
Can i let class C skip B in this certain method and look at the base method?