Hello!
I have a class that extends another and the child inherits a method it overrules:
class parent {
int method() {
...
}
}
class child extends parent {
int method() {
int ret = super.method();
/* do some other stuff */
}
I'd like to fake the super, how do I do that?
Thanks,