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.49 by dl, Thu May 27 11:05:44 2004 UTC vs.
Revision 1.50 by dl, Wed Jun 2 23:45:46 2004 UTC

# Line 32 | Line 32 | package java.util;
32   * grows automatically.  The details of the growth policy are not
33   * specified.
34   *
35 < * <p>This class implements all of the <em>optional</em> methods of
36 < * the {@link Collection} and {@link Iterator} interfaces.  The
35 > * <p>This class and its iterator implement all of the
36 > * <em>optional</em> methods of the {@link Collection} and {@link
37 > * Iterator} interfaces.
38 > * The
39   * Iterator provided in method {@link #iterator()} is <em>not</em>
40   * guaranteed to traverse the elements of the PriorityQueue in any
41   * particular order. If you need ordered traversal, consider using
# Line 327 | Line 329 | public class PriorityQueue<E> extends Ab
329  
330      /**
331       * Removes a single instance of the specified element from this
332 <     * collection, if it is present.
332 >     * queue, if it is present.
333       */
334      public boolean remove(Object o) {
335          if (o == null)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines