mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
java completion: suggest expected method type arguments (IDEA-166668)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
import java.util.*;
|
||||
|
||||
public class Usage {
|
||||
private void demo() {
|
||||
callme(Collections.<<caret>>emptyList());
|
||||
}
|
||||
|
||||
private void callme(List<String> items) {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user