mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 12:50:56 +07:00
13 lines
244 B
Java
13 lines
244 B
Java
// "Unwrap 'else' branch" "true"
|
|
|
|
class T {
|
|
String f(boolean a, boolean b) {
|
|
if (a) {
|
|
if (b) {
|
|
return "When true";
|
|
}
|
|
return "Otherwise";
|
|
}
|
|
return "Default";
|
|
}
|
|
} |