Consider using a different method name as you override a private method of the parent class.
Overwriting private methods is generally fine as long as you also use private
visibility. It might still be preferable for understandability to use a different
method name.
Overwriting private methods is generally fine as long as you also use private visibility. It might still be preferable for understandability to use a different method name.