Following code giving an error near the public void control() {.
EClipse giives a tip to remove the @Override annotation also. I went throudh the docs.oracle and found that If a method marked with @Override fails to correctly override a method in one of its superclasses, the compiler generates an error.
I don't understand what is meaning of "fails to correctly override"?
public class PersistenceFlowController implements controllers.FlowController {
@Override
public void control() {
// Do some works here
}
}
package controllers;
public interface FlowController {
void control();
}
