I've removed an unused method from an interface, and expected javac and Eclipse to complain about the fact that my implementing class still claims to override it:
@Override
public void thisMethodNoLongerOverridesAnything() {}
However, I don't get an error or even a warning.
Is there a way to configure javac or Eclipse to complain in this case?