Search code examples
javaeclipseerror-reportingoverriding

Eclipse, remove override error


I have overriden a controller class in a java projects in order to add an interceptor, I would like to know if there is anyway I can remove the "error" showing up in Eclipse:

The type CRUD is already defined

I don't think the code will help much but there you go:

package controllers;

    public abstract class CRUD extends Controller {

Solution

  • The error was removed after a rebuild of the eclipse project.