mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +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
12 lines
148 B
Java
12 lines
148 B
Java
class X {
|
|
X(String[] args) {}
|
|
|
|
X(int x) {
|
|
this(new String[]{});
|
|
}
|
|
}
|
|
class Y extends X {
|
|
Y() {
|
|
super(new String[]{});
|
|
}
|
|
} |