mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
IDEA-85069 Suggest to fill delegate arguments for all overload call candidates
This commit is contained in:
@@ -2,8 +2,10 @@ import java.io.File;
|
||||
|
||||
class Zoo {
|
||||
private Zoo delegate;
|
||||
@Override
|
||||
|
||||
public void foo(String s, File file) {
|
||||
delegate.foo(s, file);<caret>
|
||||
}
|
||||
public void foo(String s, File file, int a) {
|
||||
delegate.foo(s, file, a);<caret>
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user