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.102 by jsr166, Sat Dec 24 08:44:42 2016 UTC vs.
Revision 1.103 by jsr166, Sat Dec 24 08:52:57 2016 UTC

# Line 478 | Line 478 | public class LinkedTransferQueue<E> exte
478          }
479  
480          /**
481         * Returns true if this is an unmatched request node.
482         */
483        final boolean isUnmatchedRequest() {
484            return !isData && item == null;
485        }
486
487        /**
481           * Returns true if a node with the given mode cannot be
482           * appended to this node because this node is unmatched and
483           * has opposite data mode.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines