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

Comparing jsr166/src/main/java/util/concurrent/CountedCompleter.java (file contents):
Revision 1.32 by dl, Mon Feb 25 17:59:40 2013 UTC vs.
Revision 1.33 by jsr166, Wed May 15 02:39:59 2013 UTC

# Line 452 | Line 452 | public abstract class CountedCompleter<T
452       * @param ex the exception
453       * @param caller the task invoking this method (which may
454       * be this task itself)
455 <     * @return true if this exception should be propagated to this
455 >     * @return {@code true} if this exception should be propagated to this
456       * task's completer, if one exists
457       */
458      public boolean onExceptionalCompletion(Throwable ex, CountedCompleter<?> caller) {
# Line 502 | Line 502 | public abstract class CountedCompleter<T
502       *
503       * @param expected the expected value
504       * @param count the new value
505 <     * @return true if successful
505 >     * @return {@code true} if successful
506       */
507      public final boolean compareAndSetPendingCount(int expected, int count) {
508          return U.compareAndSwapInt(this, PENDING, expected, count);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines