mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
9 lines
171 B
Java
9 lines
171 B
Java
// "Unwrap 'if' statement" "true"
|
|
class X {
|
|
private final boolean field = true;
|
|
|
|
String m() {
|
|
if (fiel<caret>d) return "one";
|
|
return "two";
|
|
}
|
|
} |