Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/unwrapIfStatement/beforeContinue.java

10 lines
211 B
Java

// "Unwrap 'if' statement" "true"
class X {
void f(){
while (true) {
if (tr<caret>ue) {
continue;//comment
}
System.out.println();
}
}}