compile error
I have an interface
Abc.java it has method
public String[] Test();
I have another class
public final DEF implements Abc
{
public String[] Test()
{
//body of this method
}
}
got compile error
DEF is not abstract and does not override abstract method Test() in Abc
[javac] public final DEF implements Abc{
[javac] ^
[javac] 1 error
Message was edited by:
Unknown_Citizen

