Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/simplifyBooleanExpression/before6.java

8 lines
147 B
Java

// "Unwrap 'if' statement" "true"
class X {
void f() {
if ((!(!((boolean)true))<caret> ==(true))) {
//sdf
}
}
}