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

Comparing jsr166/src/main/java/util/concurrent/ForkJoinPool.java (file contents):
Revision 1.198 by jsr166, Tue May 6 17:45:47 2014 UTC vs.
Revision 1.199 by jsr166, Sun May 25 02:33:45 2014 UTC

# Line 2595 | Line 2595 | public class ForkJoinPool extends Abstra
2595          // In previous versions of this class, this method constructed
2596          // a task to run ForkJoinTask.invokeAll, but now external
2597          // invocation of multiple tasks is at least as efficient.
2598 <        ArrayList<Future<T>> futures = new ArrayList<Future<T>>(tasks.size());
2598 >        ArrayList<Future<T>> futures = new ArrayList<>(tasks.size());
2599  
2600          boolean done = false;
2601          try {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines