@Override frustration
interface I
{
String toString();
}
class C implements I
{
// IDEA thinks this is a compile-time error - very annoying
@Override
public String toString()
{
return "x";
}
}
Please sign in to leave a comment.
This is fixed in the upcoming 5.0. I would say the chances of getting
the fix back-ported to earlier versions was probably slim, JetBrains
don't generally seem very keen on this idea :(
R
I do recall this issue being fixed (I forget the version), but I just tried it again in 5.0.1 (#3461) and the issue is back!!
Any change for a fix?