Update C.java

This commit is contained in:
Siwat Sirichai 2020-11-17 17:55:59 +00:00
parent 662b668321
commit f8f69fee46
1 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
public class C extends B {
private int dataC;
@ -12,7 +11,7 @@ public class C extends B {
@Override
public void f() {
System.out.println("method f() from class B is being called");
System.out.println("method f() from class C is being called");
}
@Override