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.28 by jsr166, Fri Sep 10 00:08:06 2010 UTC vs.
Revision 1.29 by jsr166, Sat Sep 11 21:08:29 2010 UTC

# Line 559 | Line 559 | public class LinkedTransferQueue<E> exte
559              throw new NullPointerException();
560          Node s = null;                        // the node to append, if needed
561  
562 <        retry: for (;;) {                     // restart on append race
562 >        retry:
563 >        for (;;) {                            // restart on append race
564  
565              for (Node h = head, p = h; p != null;) { // find & match first node
566                  boolean isData = p.isData;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines