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

Comparing jsr166/src/main/java/util/concurrent/PriorityBlockingQueue.java (file contents):
Revision 1.89 by dl, Tue Jan 22 18:25:32 2013 UTC vs.
Revision 1.90 by jsr166, Mon Jan 28 21:59:11 2013 UTC

# Line 325 | Line 325 | public class PriorityBlockingQueue<E> ex
325       * @param k the position to fill
326       * @param x the item to insert
327       * @param array the heap array
328     * @param n heap size
328       */
329      private static <T> void siftUpComparable(int k, T x, Object[] array) {
330          Comparable<? super T> key = (Comparable<? super T>) x;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines