Files
openide/java/java-tests/testData/refactoring/extractMethod/TwoFromThreeEqStatements.java

8 lines
216 B
Java

class Test {
public static void main(String[] args) {
<selection>System.out.println("hello");
System.out.println("hello");</selection>
System.out.println("hello");
}
}