mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 0ee29991b00d4ac8341c031a4a111b23bb44b800
14 lines
198 B
Java
14 lines
198 B
Java
// "Convert to local variable" "true"
|
|
class Temp {
|
|
public boolean flag;
|
|
|
|
void test(int <caret>p) {
|
|
if (flag) {
|
|
p = 1;
|
|
}
|
|
else {
|
|
p = 2;
|
|
}
|
|
System.out.print(p);
|
|
}
|
|
} |