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

8 lines
132 B
Java

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