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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentLinkedDeque.java (file contents):
Revision 1.55 by jsr166, Tue Dec 2 05:48:28 2014 UTC vs.
Revision 1.56 by jsr166, Wed Dec 31 04:07:33 2014 UTC

# Line 1338 | Line 1338 | public class ConcurrentLinkedDeque<E>
1338              Node<E> p = (nextNode == null) ? startNode() : nextNode(nextNode);
1339              for (;; p = nextNode(p)) {
1340                  if (p == null) {
1341 <                    // p might be active end or TERMINATOR node; both are OK
1341 >                    // might be at active end or TERMINATOR node; both are OK
1342                      nextNode = null;
1343                      nextItem = null;
1344                      break;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines