mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
Often it's used as a knob to switch program behavior, so it's reasonable to analyze both alternatives
8 lines
160 B
Java
8 lines
160 B
Java
// "Unwrap 'if' statement" "true"
|
|
class X {
|
|
String m() {
|
|
boolean field = true;
|
|
if (fiel<caret>d) return "one";
|
|
return "two";
|
|
}
|
|
} |