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

8 lines
165 B
Java

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