Files
openide/java/java-tests/testData/refactoring/extractMethod/TwoFromThreeEqStatements_after.java
T

12 lines
251 B
Java

class Test {
public static void main(String[] args) {
newMethod();
System.out.println("hello");
}
private static void newMethod() {
System.out.println("hello");
System.out.println("hello");
}
}