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

Comparing jsr166/src/main/java/util/PriorityQueue.java (file contents):
Revision 1.81 by dl, Wed Jan 16 15:06:10 2013 UTC vs.
Revision 1.82 by jsr166, Wed Jan 16 21:18:50 2013 UTC

# Line 60 | Line 60 | import java.util.function.Block;
60   * the priority queue in any particular order. If you need ordered
61   * traversal, consider using {@code Arrays.sort(pq.toArray())}.
62   *
63 < * <p> <strong>Note that this implementation is not synchronized.</strong>
63 > * <p><strong>Note that this implementation is not synchronized.</strong>
64   * Multiple threads should not access a {@code PriorityQueue}
65   * instance concurrently if any of the threads modifies the queue.
66   * Instead, use the thread-safe {@link
# Line 783 | Line 783 | public class PriorityQueue<E> extends Ab
783      }
784  
785      // wrapping constructor in method avoids transient javac problems
786 <    final PriorityQueueSpliterator<E> spliterator(int origin, int fence,
786 >    final PriorityQueueSpliterator<E> spliterator(int origin, int fence,
787                                                    int expectedModCount) {
788 <        return new PriorityQueueSpliterator(this, origin, fence,
788 >        return new PriorityQueueSpliterator(this, origin, fence,
789                                              expectedModCount);
790      }
791  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines