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

15 lines
281 B
Java

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