mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
1. Properly handle non-vararg call sites 2. Update callsites when vararg type was changed to non-vararg or vice versa (without reordering, etc.) Fixes IDEA-318626 Change signature incorrectly wraps/unwraps arguments when changing between varargs and arrays GitOrigin-RevId: 3372a144be4363fef2c40e8968a07d8ed6b916a6
9 lines
191 B
Java
9 lines
191 B
Java
public class X
|
|
{
|
|
void doSomething(String[] args, int x) { /* ... */ }
|
|
|
|
void use() {
|
|
doSomething(new String[]{"foo", "bar"}, 0);
|
|
doSomething(new String[]{"one", "two"}, 0);
|
|
}
|
|
} |