ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/RecursiveActionTest.java
(Generate patch)

Comparing jsr166/src/test/tck/RecursiveActionTest.java (file contents):
Revision 1.55 by jsr166, Sun Jul 22 21:09:02 2018 UTC vs.
Revision 1.56 by dl, Tue Jan 26 13:33:06 2021 UTC

# Line 920 | Line 920 | public class RecursiveActionTest extends
920                  FibAction f = new FibAction(8);
921                  FibAction g = new FibAction(9);
922                  FibAction h = new FibAction(7);
923 <                HashSet set = new HashSet();
923 >                HashSet<ForkJoinTask<?>> set = new HashSet<ForkJoinTask<?>>();
924                  set.add(f);
925                  set.add(g);
926                  set.add(h);
# Line 1018 | Line 1018 | public class RecursiveActionTest extends
1018                  FailingFibAction f = new FailingFibAction(8);
1019                  FibAction g = new FibAction(9);
1020                  FibAction h = new FibAction(7);
1021 <                HashSet set = new HashSet();
1021 >                HashSet<ForkJoinTask<?>> set = new HashSet<ForkJoinTask<?>>();
1022                  set.add(f);
1023                  set.add(g);
1024                  set.add(h);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines