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

Comparing jsr166/src/test/loops/LinkedAsyncAction.java (file contents):
Revision 1.11 by jsr166, Mon Nov 26 11:36:33 2012 UTC vs.
Revision 1.12 by jsr166, Mon Nov 26 11:47:41 2012 UTC

# Line 212 | Line 212 | public abstract class LinkedAsyncAction
212       * @param ex the exception to throw when joining this task
213       * @throws NullPointerException if ex is null
214       * @throws Throwable if any invocation of
215 <     * {@code onException} does so.
215 >     * {@code onException} does so
216       */
217      public final void completeExceptionally(Throwable ex) {
218          LinkedAsyncAction a = this;
# Line 231 | Line 231 | public abstract class LinkedAsyncAction
231  
232      /**
233       * Returns this task's parent, or null if none.
234 <     * @return this task's parent, or null if none.
234 >     * @return this task's parent, or null if none
235       */
236      public final LinkedAsyncAction getParent() {
237          return parent;
# Line 239 | Line 239 | public abstract class LinkedAsyncAction
239  
240      /**
241       * Returns the number of subtasks that have not yet completed.
242 <     * @return the number of subtasks that have not yet completed.
242 >     * @return the number of subtasks that have not yet completed
243       */
244      public final int getPendingSubtaskCount() {
245          return getControlState();
# Line 340 | Line 340 | public abstract class LinkedAsyncAction
340          controlStateUpdater.decrementAndGet(this);
341      }
342  
343
343   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines