--- jsr166/src/test/tck/ForkJoinPool8Test.java 2021/01/26 13:33:06 1.41 +++ jsr166/src/test/tck/ForkJoinPool8Test.java 2021/01/27 01:57:24 1.42 @@ -739,7 +739,7 @@ public class ForkJoinPool8Test extends J FibAction f = new FibAction(8); FibAction g = new FibAction(9); FibAction h = new FibAction(7); - HashSet> set = new HashSet>(); + HashSet> set = new HashSet<>(); set.add(f); set.add(g); set.add(h); @@ -837,7 +837,7 @@ public class ForkJoinPool8Test extends J FailingFibAction f = new FailingFibAction(8); FibAction g = new FibAction(9); FibAction h = new FibAction(7); - HashSet> set = new HashSet>(); + HashSet> set = new HashSet<>(); set.add(f); set.add(g); set.add(h); @@ -1369,7 +1369,7 @@ public class ForkJoinPool8Test extends J CCF f = new LCCF(null, 8); CCF g = new LCCF(null, 9); CCF h = new LCCF(null, 7); - HashSet> set = new HashSet>(); + HashSet> set = new HashSet<>(); set.add(f); set.add(g); set.add(h); @@ -1464,7 +1464,7 @@ public class ForkJoinPool8Test extends J FailingCCF f = new LFCCF(null, 8); CCF g = new LCCF(null, 9); CCF h = new LCCF(null, 7); - HashSet> set = new HashSet>(); + HashSet> set = new HashSet<>(); set.add(f); set.add(g); set.add(h);