mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-26 17:19:48 +07:00
7 lines
165 B
Java
7 lines
165 B
Java
// "Push condition b inside method call" "true"
|
|
class Foo {
|
|
void bar(boolean b){
|
|
String s = foo(b ? "true" : "false");
|
|
}
|
|
String foo(String p) {return p;}
|
|
} |