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

Comparing jsr166/src/jsr166y/LinkedTransferQueue.java (file contents):
Revision 1.17 by jsr166, Tue Mar 31 15:17:19 2009 UTC vs.
Revision 1.19 by jsr166, Tue Jul 21 00:15:14 2009 UTC

# Line 579 | Line 579 | public class LinkedTransferQueue<E> exte
579          QNode snext;       // successor of next
580          QNode curr;        // last returned node, for remove()
581          QNode pcurr;       // predecessor of curr, for remove()
582 <        E nextItem;        // Cache of next item, once commited to in next
582 >        E nextItem;        // Cache of next item, once committed to in next
583  
584          Itr() {
585              findNext();
# Line 765 | Line 765 | public class LinkedTransferQueue<E> exte
765      /**
766       * Reconstitute the Queue instance from a stream (that is,
767       * deserialize it).
768 +     *
769       * @param s the stream
770       */
771      private void readObject(java.io.ObjectInputStream s)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines