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

Comparing jsr166/src/main/java/util/Queue.java (file contents):
Revision 1.25 by jsr166, Fri Apr 29 02:00:39 2005 UTC vs.
Revision 1.26 by jsr166, Mon May 2 04:19:58 2005 UTC

# Line 137 | Line 137 | public interface Queue<E> extends Collec
137  
138      /**
139       * Retrieves and removes the head of this queue.  This method
140 <     * differs from the <tt>poll</tt> method in that it throws an
140 >     * differs from the {@link #poll} method only in that it throws an
141       * exception if this queue is empty.
142       *
143       * @return the head of this queue.
# Line 156 | Line 156 | public interface Queue<E> extends Collec
156  
157      /**
158       * Retrieves, but does not remove, the head of this queue.  This method
159 <     * differs from the <tt>peek</tt> method only in that it throws an
159 >     * differs from the {@link #peek} method only in that it throws an
160       * exception if this queue is empty.
161       *
162       * @return the head of this queue.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines