Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforePreserveComments.java
T

8 lines
148 B
Java

// "Invert 'if' condition" "true"
class A {
public void foo() {
<caret>if (c) { //comments to restore
a();
}
}
}