mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
36 lines
607 B
Java
36 lines
607 B
Java
// "Extract common part with variables from 'if'" "true"
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public class Main {
|
|
class Person {
|
|
int age;
|
|
String name;
|
|
|
|
public Person(int age, String name) {
|
|
this.age = age;
|
|
this.name = name;
|
|
}
|
|
}
|
|
|
|
void renamePerson(Person person, String newName) {
|
|
person.name = newName;
|
|
}
|
|
|
|
void work(int i) {
|
|
|
|
}
|
|
|
|
public void main(String[] args) {
|
|
Person person = new Person(12, "aaa");
|
|
renamePerson(person, "ccc");
|
|
int x;
|
|
if(true) {
|
|
x = 12;
|
|
} else {
|
|
x = 1;
|
|
}
|
|
work(x);
|
|
}
|
|
} |