about generic array completion

If I want to new a generic array like this:
ArrayList<String>[] a = new ArrayList[100];

After typing ArrayList<String>[] a = new A
Intellij IDEA can complete it to ArrayList<String>[] a = new ArrayList<String>[];
but this is not correct.

How can make this completion correct or disable this completion?

0
Avatar
Permanently deleted user

thanks a lot

0

请先登录再写评论。