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.86 by jsr166, Tue May 26 20:20:31 2015 UTC vs.
Revision 1.87 by jsr166, Tue Jun 9 17:18:05 2015 UTC

# Line 1019 | Line 1019 | public class LinkedTransferQueue<E> exte
1019      static final class LTQSpliterator<E> implements Spliterator<E> {
1020          static final int MAX_BATCH = 1 << 25;  // max batch array size;
1021          final LinkedTransferQueue<E> queue;
1022 <        Node current;    // current node; null until initialized
1022 >        Node current;       // current node; null until initialized
1023          int batch;          // batch size for splits
1024          boolean exhausted;  // true when no more nodes
1025          LTQSpliterator(LinkedTransferQueue<E> queue) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines