Then you might be making a method call and not Sayin super()
inside constructor.. for instance..
class Superclass
{
public void f1(){
}
}
class Subclass extends Superclass
{
Subclass()
{
System.out.println();
super.f1();
}
}
The above code works fine...