Java inspection: don't offer "Make Type Generic" inspection at variable initializer (IDEA-157727)

This commit is contained in:
Pavel Dolgov
2016-06-28 18:04:59 +03:00
parent 57cf830d55
commit eca5f9ad13
3 changed files with 19 additions and 2 deletions
@@ -0,0 +1,5 @@
import java.util.*;
public class F {
List list = new ArrayList<caret><String>();
}