Methods that are never executed are dead code and should be removed. Cleaning out dead code decreases the size of the maintained codebase, making it easier to understand the program and preventing bugs from being introduced.
When using React class components, all non-React lifecycle methods should be called within the scope of the component. If a method is only called from outside the class, consider using `props` to interact with the component and re-render if needed, as React encourages data-driven components.
* https://reactjs.org/docs/components-and-props.html[React Documentation - Components and Props]
* https://legacy.reactjs.org/docs/state-and-lifecycle.html#adding-lifecycle-methods-to-a-class[React Documentation - Adding Lifecycle Methods to a Class]