Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/unwrapIfStatement/beforeLoopBody.java
2018-09-21 13:48:12 +02:00

10 lines
222 B
Java

// "Remove 'if' statement" "true"
class X {
int m(String s) {
for (int i = 0; i < 100; i++)
if (s i<caret>nstanceof Integer) {
System.out.println();
}
return 1;
}
}