mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-28 19:50:53 +07:00
12 lines
263 B
Java
12 lines
263 B
Java
// "Inline 'else' branch" "false"
|
|
|
|
class T {
|
|
void f(boolean a, boolean b) {
|
|
if (a)
|
|
if (b) {
|
|
System.out.println("When true");
|
|
} <caret>else {
|
|
System.out.println("Otherwise");
|
|
}
|
|
}
|
|
} |