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

13 lines
193 B
Java

public class ExtractMethods {
void newMethod() {
int i = 0;
newMethod(i);
}
private void newMethod(int i) {
if (true) {
newMethod(i);
}
}
}