mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
delegate methods: restore ellipsis type (IDEA-171529)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
class Foo {
|
||||
void foo(String... s) {}
|
||||
}
|
||||
|
||||
class Bar {
|
||||
Foo myDelegate;
|
||||
|
||||
public void foo(String... s) {
|
||||
myDelegate.foo(s);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
class Foo {
|
||||
void foo(String... s) {}
|
||||
}
|
||||
|
||||
class Bar {
|
||||
Foo myDelegate;
|
||||
<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user