October 06, 2004
method x of I not implemented

I got this one again on windows from a program that compiles on linux. I still don't have a short example. the situation is:

module a.util.I;
interface I

module a.util.A;
class A implements the interface I

module a.sql.B;
class B extends class A

the compiler complains "class B: method x from interface I isn't implemented"

Ant