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.73 by jsr166, Fri Jun 17 23:52:54 2011 UTC vs.
Revision 1.74 by jsr166, Sat Jun 18 01:25:18 2011 UTC

# Line 381 | Line 381 | public class FutureTask<V> implements Ru
381              WaitNode pred = null;
382              WaitNode q = waiters;
383              while (q != null) {
384 <                WaitNode next = node.next;
384 >                WaitNode next = q.next;
385                  if (q != node) {
386                      pred = q;
387                      q = next;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines