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

8 lines
164 B
Java

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