Java9CollectionFactoryInspectionTest: updated to use MockJdk9

This commit is contained in:
Tagir Valeev
2017-03-09 10:55:16 +07:00
parent 8d470681e4
commit 6f60712d5a
13 changed files with 19 additions and 12 deletions
@@ -4,7 +4,7 @@ import java.util.*;
public class Test {
public void test2() {
Set<String> set;
set = Set.<String>of("foo", "bar", "xyz");
set = Set.of("foo", "bar", "xyz");
System.out.println(set);
}
}