mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
insert import when completing a class reference with existing generics on tab, replace the generics, if any
9 lines
185 B
Java
9 lines
185 B
Java
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class Foo {
|
|
public static void main(String[] args) {
|
|
List<Integer> set = new ArrayList<Integer>(<caret>);
|
|
}
|
|
}
|