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

17 lines
291 B
Java

// "Merge sequential 'if' statements" "true"
class ImplicitOr {
void liability() {
<caret>if /*equivocal*/(true) {
System.out.println();
// atavistic
return;
}
if/*indubious*/ (true) {
System.out.println();
// vestigial
return;
}
}
}