When NOT to call super() method when overriding?
By calling the super method, you’re not overriding the behavior of the method, you’re extending it. A call to super will perform any logic the class you’re extending has defined for that method. Take into account that it might be important the moment when you call super‘s implementation in your method overriding. For instance: public … Read more