Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/mergeIfAnd/afterIfNoBlock.java
Bas Leijdekkers 0954a97685 IPP: make intention texts more distinguishable from each other
GitOrigin-RevId: 47d0fe080875ef6f68bac5fa3b2e836c2f5430c0
2020-11-06 13:43:59 +00:00

12 lines
253 B
Java

// "Merge nested 'if' statements" "true"
class Test {
public static void main(String[] args) {
/*comment1*/
// comment3
if (args.length > 0 && args[/*comment2*/0].equals("foo")) {
System.out.println("oops");
}
}
}