mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
14 lines
188 B
Java
14 lines
188 B
Java
// "Convert to local" "true"
|
|
class Test {
|
|
|
|
int getFoo1(boolean f) {
|
|
int myFoo;
|
|
if (f) {
|
|
myFoo = 1;
|
|
}
|
|
else {
|
|
myFoo = 2;
|
|
}
|
|
return myFoo;
|
|
}
|
|
} |