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

Comparing jsr166/src/main/java/util/concurrent/LinkedTransferQueue.java (file contents):
Revision 1.34 by jsr166, Sun Nov 14 02:31:23 2010 UTC vs.
Revision 1.35 by jsr166, Sun Nov 14 02:33:58 2010 UTC

# Line 806 | Line 806 | public class LinkedTransferQueue<E> exte
806              }
807  
808              this.lastRet = prev;
809 +
810              for (Node p = prev, s, n;;) {
811                  s = (p == null) ? head : p.next;
812                  if (s == null)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines