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.26 by jsr166, Mon May 2 04:19:58 2005 UTC vs.
Revision 1.27 by jsr166, Mon May 2 08:35:49 2005 UTC

# Line 120 | Line 120 | public interface Queue<E> extends Collec
120       * preferable to method {@link Collection#add}, which can fail to
121       * insert an element only by throwing an exception.
122       *
123 <     * @param o the element to insert.
123 >     * @param e the element to insert.
124       * @return <tt>true</tt> if it was possible to add the element to
125       * this queue, else <tt>false</tt>
126       */
127 <    boolean offer(E o);
127 >    boolean offer(E e);
128  
129      /**
130       * Retrieves and removes the head of this queue, or <tt>null</tt>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines