mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
38 lines
690 B
Java
38 lines
690 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) {
|
|
if<caret>(true) {
|
|
Person person = new Person(12, "aaa");
|
|
renamePerson(person, "ccc");
|
|
int x = 12;
|
|
work(x);
|
|
} else {
|
|
Person person = new Person(12, "aaa");
|
|
renamePerson(person, "ccc");
|
|
int x = 1;
|
|
work(x);
|
|
}
|
|
}
|
|
} |