Příklad

public class ClassA extends ClassB {
public void test () {
super.test();
}

}

Řešení
Odeberte nadbytečnou metodu potlačení

public class ClassA extends ClassB {
}