mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
12 lines
202 B
Java
12 lines
202 B
Java
class A {
|
|
private String toInline(boolean b) {
|
|
if (b) {
|
|
return "b";
|
|
}
|
|
return "a";
|
|
}
|
|
|
|
public String method(boolean b) {
|
|
<caret>toInline(b);
|
|
}
|
|
} |