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