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.16 by jsr166, Mon Sep 13 23:23:45 2010 UTC vs.
Revision 1.17 by dl, Wed Sep 15 12:46:57 2010 UTC

# Line 428 | Line 428 | public class RecursiveActionTest extends
428      public void testGetPool() {
429          final ForkJoinPool mainPool = mainPool();
430          RecursiveAction a = new RecursiveAction() {
431 +            final ForkJoinPool p = mainPool;
432              public void compute() {
433 <                threadAssertTrue(getPool() == mainPool);
433 >                threadAssertTrue(getPool() == p);
434              }};
435          testInvokeOnPool(mainPool, a);
436      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines