IDEA-85069 Suggest to fill delegate arguments for all overload call candidates

This commit is contained in:
peter
2012-06-20 20:14:16 +02:00
parent a7b4a61ef8
commit 724712ad09
4 changed files with 11 additions and 6 deletions
@@ -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>
}
}