JavaCompilerCore/app/resources/javFiles/Subclass.jav

6 lines
112 B
Plaintext
Raw Permalink Normal View History

2023-01-10 13:22:05 +00:00
public class Subclass extends Superclass {
public void printMethod() {
super.printMethod();
}
}