I have a method defined in an interface:
public Object g(String inter,String src,Object...params);
I am getting an error with the @Override annotation on the definition of the method in the implementing class:
public Object g(String inter,String src,Object...params) {}
Resolved: The issue was solved by cleaning the project and was probably caused by the Scala IDE
return someObject. – BalusC Nov 25 '11 at 20:14