mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
14 lines
191 B
Java
14 lines
191 B
Java
// "Convert to local" "true"
|
|
class Test {
|
|
private int my<caret>Foo;
|
|
|
|
int getFoo1(boolean f) {
|
|
if (f) {
|
|
myFoo = 1;
|
|
}
|
|
else {
|
|
myFoo = 2;
|
|
}
|
|
return myFoo;
|
|
}
|
|
} |