From 9c6efc077f0c0a3d2d71d98cce39b96a4afee782 Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 25 Jun 2012 14:17:31 +0200 Subject: [PATCH] IDEA-87753 Generics: incorrect smart code completion (Generic array creation) --- .../intellij/codeInsight/completion/JavaInheritorsGetter.java | 2 +- .../codeInsight/completion/smartType/generics/after8.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/java/java-impl/src/com/intellij/codeInsight/completion/JavaInheritorsGetter.java b/java/java-impl/src/com/intellij/codeInsight/completion/JavaInheritorsGetter.java index 728913bed8af..72ec6c5914d3 100644 --- a/java/java-impl/src/com/intellij/codeInsight/completion/JavaInheritorsGetter.java +++ b/java/java-impl/src/com/intellij/codeInsight/completion/JavaInheritorsGetter.java @@ -85,7 +85,7 @@ public class JavaInheritorsGetter extends CompletionProvider {} class C { void foo () { - List[] array = new List[]; + List[] array = new List[]; } } \ No newline at end of file