JavaTXCompilerInJavaTX/resources/bytecode/javFiles/Subclass.jav

6 lines
112 B
Plaintext
Raw Normal View History

2017-10-06 11:31:36 +00:00
public class Subclass extends Superclass {
public void printMethod() {
super.printMethod();
}
}