I have the following setup which is giving me a message stating that \"Constructor Calls Overridable Method\". I know this is happening, but my question is how to fix it so
You could declare doFoo as final if you don't need to override that method later:
public final void doFoo() { }