mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
1. Method parameters/method call arguments are reformatted during method return type/name/modifiers change now (corresponding logic is added at PSI level); 2. Corresponding tests are added;
10 lines
150 B
Java
10 lines
150 B
Java
public class Test {
|
|
public void <caret>test123(int i,
|
|
int j) {
|
|
}
|
|
|
|
public void foo() {
|
|
test123(1,
|
|
2);
|
|
}
|
|
} |