forked from JavaTX/JavaCompilerCore
9 lines
104 B
Plaintext
9 lines
104 B
Plaintext
|
public class EmptyMethod{
|
||
|
|
||
|
public void m1(){
|
||
|
System.out.println("test");
|
||
|
}
|
||
|
|
||
|
public void m2(){}
|
||
|
}
|