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.103 by jsr166, Sat Dec 24 08:52:57 2016 UTC vs.
Revision 1.104 by jsr166, Sat Dec 24 09:13:10 2016 UTC

# Line 442 | Line 442 | public class LinkedTransferQueue<E> exte
442           * only be seen after publication via casNext.
443           */
444          Node(Object item) {
445 <            ITEM.set(this, item); // relaxed write
445 >            ITEM.set(this, item);
446              isData = (item != null);
447          }
448  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines