Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/simplifyBooleanExpressionFix/afterStringConcat.java
T
2021-05-18 10:27:41 +00:00

9 lines
157 B
Java

// "Simplify 'b' to true" "true"
class A {
void foo(boolean b) {
if (b) {
String s = "foo" + true + "bar";
}
}
}