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

Comparing jsr166/src/main/java/util/concurrent/FutureTask.java (file contents):
Revision 1.89 by jsr166, Sun Jun 19 15:43:14 2011 UTC vs.
Revision 1.90 by jsr166, Sun Jun 19 15:50:17 2011 UTC

# Line 308 | Line 308 | public class FutureTask<V> implements Ru
308       * nulls out callable.
309       */
310      private void finishCompletion() {
311 <        // assert state > NEW;
311 >        // assert state > COMPLETING;
312          for (WaitNode q; (q = waiters) != null;) {
313              if (UNSAFE.compareAndSwapObject(this, waitersOffset, q, null)) {
314                  for (;;) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines