mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 13:50:53 +07:00
9 lines
127 B
Plaintext
9 lines
127 B
Plaintext
class A {
|
|
|
|
public String method(boolean b) {
|
|
if (b) {
|
|
return "b";
|
|
}
|
|
return "a";
|
|
}
|
|
} |