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
7 lines
126 B
Java
7 lines
126 B
Java
public enum X
|
|
{
|
|
A(0, "foo", "bar"),
|
|
B(0, new String[]{"one", "two"});
|
|
|
|
<caret>X(int x, String... args) { /* ... */ }
|
|
} |