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

Comparing jsr166/src/jsr166y/CountedCompleter.java (file contents):
Revision 1.15 by dl, Fri Nov 23 17:50:59 2012 UTC vs.
Revision 1.16 by jsr166, Sat Nov 24 03:46:28 2012 UTC

# Line 509 | Line 509 | public abstract class CountedCompleter<T
509      /**
510       * If the pending count is nonzero, (atomically) decrements it.
511       *
512 <     * @return the initial (undecremented) pending count holding on entry
512 >     * @return the initial (undecremented) pending count holding on entry
513       * to this method
514       */
515      public final int decrementPendingCountUnlessZero() {
# Line 629 | Line 629 | public abstract class CountedCompleter<T
629       * traversal loop for homogenous task hierarchies:
630       *
631       * <pre> {@code
632 <     * for(CountedCompleter<?> c = firstComplete(); c != null; c = c.nextComplete()) {
632 >     * for (CountedCompleter<?> c = firstComplete(); c != null; c = c.nextComplete()) {
633       *   // ... process c ...
634       * }}</pre>
635       *

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines