Java9CollectionFactoryInspection: add type argument if necessary

This commit is contained in:
Tagir Valeev
2017-02-28 13:05:21 +07:00
parent 03274b0741
commit f36d4710f1
15 changed files with 51 additions and 14 deletions
@@ -6,6 +6,6 @@ public class Test {
static {
Set<String> set;
MY_SET = Set.of("foo", "bar", "xyz");
MY_SET = Set.<String>of("foo", "bar", "xyz");
}
}