When a method in a child class has the same signature as a method in a parent class, it is assumed to be an override. However, that's not the case when:
Typically, these things are done unintentionally; the private parent class method is overlooked, the ``++static++`` keyword in the parent declaration is overlooked, or the wrong class is imported in the child. But if the intent is truly for the child class method to be different, then the method should be renamed to prevent confusion.