blob: a6ffda7c546d9bb9250923cffdf7222c8693e565 [file] [log] [blame]
public class ExtractMethods {
void newMethod() {
int i = 0;
newMethod(i);
}
private void newMethod(int i) {
if (true) {
newMethod(i);
}
}
}