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.23 by dholmes, Wed Aug 6 01:57:53 2003 UTC vs.
Revision 1.24 by tim, Wed Aug 6 18:22:09 2003 UTC

# Line 81 | Line 81 | public class PriorityQueue<E> extends Ab
81      /**
82       * Creates a <tt>PriorityQueue</tt> with the default initial capacity
83       * (11) that orders its elements according to their natural
84 <     * ordering (using <tt>Comparable</tt>.)
84 >     * ordering (using <tt>Comparable</tt>).
85       */
86      public PriorityQueue() {
87          this(DEFAULT_INITIAL_CAPACITY, null);
# Line 90 | Line 90 | public class PriorityQueue<E> extends Ab
90      /**
91       * Creates a <tt>PriorityQueue</tt> with the specified initial capacity
92       * that orders its elements according to their natural ordering
93 <     * (using <tt>Comparable</tt>.)
93 >     * (using <tt>Comparable</tt>).
94       *
95       * @param initialCapacity the initial capacity for this priority queue.
96       * @throws IllegalArgumentException if <tt>initialCapacity</tt> is less
# Line 531 | Line 531 | public class PriorityQueue<E> extends Ab
531      /**
532       * Returns the comparator used to order this collection, or <tt>null</tt>
533       * if this collection is sorted according to its elements natural ordering
534 <     * (using <tt>Comparable</tt>.)
534 >     * (using <tt>Comparable</tt>).
535       *
536       * @return the comparator used to order this collection, or <tt>null</tt>
537       * if this collection is sorted according to its elements natural ordering.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines