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?
Please sign in to leave a comment.
It's a known bug, thanks. You may vote for http://youtrack.jetbrains.com/issue/IDEABKL-3705
thanks a lot