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.8 by jsr166, Mon Jul 27 15:10:33 2009 UTC

# Line 38 | Line 38 | package jsr166y;
38   public abstract class RecursiveTask<V> extends ForkJoinTask<V> {
39  
40      /**
41 <     * The result returned by compute method.
41 >     * The result of the computation.
42       */
43      V result;
44  
# Line 56 | Line 56 | public abstract class RecursiveTask<V> e
56      }
57  
58      /**
59 <     * Implements execution conventions for RecursiveTask
59 >     * Implements execution conventions for RecursiveTask.
60       */
61      protected final boolean exec() {
62          result = compute();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines