Files
openide/java/java-tests/testData/refactoring/extractMethod/IDEADEV11748_after.java
Dmitry Jemerov b7e66aee44 test++
2009-09-10 20:21:16 +04:00

19 lines
326 B
Java

class Test {
public static String bar(int x , int y) {
while (true) {
newMethod(x, y);
}
}
private static void newMethod(int x, int y) {
if (x == y) {
return;
}
System.out.println("HW");
}
private static int g() {
return 0;
}
}