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

7 lines
180 B
Java

// "Simplify boolean expression" "false"
class X {
void f() {
boolean x;
x = (<caret>false); // Another action "Remove redundant parentheses" is ok here
}
}