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

Comparing jsr166/src/jsr166y/RecursiveAction.java (file contents):
Revision 1.1 by dl, Tue Jan 6 14:30:31 2009 UTC vs.
Revision 1.2 by jsr166, Mon Jul 20 21:45:06 2009 UTC

# Line 12 | Line 12 | package jsr166y;
12   * ForkJoinTasks. Because <tt>null</tt> is the only valid value of
13   * <tt>Void</tt>, methods such as join always return <tt>null</tt>
14   * upon completion.
15 < *
15 > *
16   * <p><b>Sample Usages.</b> Here is a sketch of a ForkJoin sort that
17   * sorts a given <tt>long[]</tt> array:
18   *
# Line 126 | Line 126 | package jsr166y;
126   public abstract class RecursiveAction extends ForkJoinTask<Void> {
127  
128      /**
129 <     * The main computation performed by this task.
129 >     * The main computation performed by this task.
130       */
131      protected abstract void compute();
132  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines