Adjust some method calls.

This commit is contained in:
Siwat Sirichai 2020-11-18 14:00:27 +07:00
parent 662b668321
commit f5ff89c633
4 changed files with 4 additions and 3 deletions

Binary file not shown.

View file

@ -12,7 +12,8 @@ public class C extends B {
@Override
public void f() {
System.out.println("method f() from class B is being called");
super.f();
System.out.println("method f() from class C is being called");
}
@Override