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.6 by dl, Wed Jul 22 19:04:11 2009 UTC vs.
Revision 1.9 by dl, Fri Jul 31 16:25:40 2009 UTC

# Line 36 | Line 36 | package jsr166y;
36   * @author Doug Lea
37   */
38   public abstract class RecursiveTask<V> extends ForkJoinTask<V> {
39 +    private static final long serialVersionUID = 5232453952276485270L;
40  
41      /**
42 <     * The result returned by compute method.
42 >     * The result of the computation.
43       */
44      V result;
45  
# Line 56 | Line 57 | public abstract class RecursiveTask<V> e
57      }
58  
59      /**
60 <     * Implements execution conventions for RecursiveTask
60 >     * Implements execution conventions for RecursiveTask.
61       */
62      protected final boolean exec() {
63          result = compute();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines