Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/simplifyBooleanExpressionFix/beforeConditionalExprBooleanNegative.java
2021-05-14 17:22:38 +00:00

8 lines
179 B
Java

// "Simplify 'arg.isEmpty()' to false" "false"
class Test {
void test() {
String arg = "12";
Boolean result = arg != null && (<caret>arg.isEmpty() ? true : null);
}
}