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

Comparing jsr166/src/jsr166y/RecursiveTask.java (file contents):
Revision 1.4 by jsr166, Mon Jul 20 22:40:09 2009 UTC vs.
Revision 1.6 by dl, Wed Jul 22 19:04:11 2009 UTC

# Line 32 | Line 32 | package jsr166y;
32   * minimum granularity size (for example 10 here) for which you always
33   * sequentially solve rather than subdividing.
34   *
35 + * @since 1.7
36 + * @author Doug Lea
37   */
38   public abstract class RecursiveTask<V> extends ForkJoinTask<V> {
39  
40      /**
39     * Empty constructor for use by subclasses.
40     */
41    protected RecursiveTask() {
42    }
43
44    /**
41       * The result returned by compute method.
42       */
43      V result;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines