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

Comparing jsr166/src/jsr166y/ForkJoinPool.java (file contents):
Revision 1.18 by jsr166, Thu Jul 23 23:23:41 2009 UTC vs.
Revision 1.19 by jsr166, Fri Jul 24 18:57:56 2009 UTC

# Line 1834 | Line 1834 | public class ForkJoinPool extends Abstra
1834      // AbstractExecutorService overrides
1835  
1836      protected <T> RunnableFuture<T> newTaskFor(Runnable runnable, T value) {
1837 <        return new AdaptedRunnable(runnable, value);
1837 >        return new AdaptedRunnable<T>(runnable, value);
1838      }
1839  
1840      protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) {
1841 <        return new AdaptedCallable(callable);
1841 >        return new AdaptedCallable<T>(callable);
1842      }
1843  
1844  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines