mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
17 lines
299 B
Java
17 lines
299 B
Java
// "Merge sequential 'if' statements" "true-preview"
|
|
|
|
class ImplicitOr {
|
|
|
|
void liability() {
|
|
<caret>if /*equivocal*/(true) {
|
|
System.out.println();
|
|
// atavistic
|
|
return;
|
|
}
|
|
if/*indubious*/ (true) {
|
|
System.out.println();
|
|
// vestigial
|
|
return;
|
|
}
|
|
}
|
|
} |