Files
openide/java/java-tests/testData/refactoring/extractMethod/RecursiveCallToExtracted.java
2009-12-23 13:31:40 +03:00

9 lines
143 B
Java

public class ExtractMethods {
void newMethod() {
int i = 0;
<selection>if (true) {
newMethod(i);
}</selection>
}
}