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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentLinkedQueue.java (file contents):
Revision 1.38 by jsr166, Wed Jun 8 01:44:14 2005 UTC vs.
Revision 1.39 by jsr166, Mon Jul 18 19:14:17 2005 UTC

# Line 158 | Line 158 | public class ConcurrentLinkedQueue<E> ex
158      /**
159       * Inserts the specified element at the tail of this queue.
160       *
161 <     * @return <tt>true</tt> (as per the spec for {@link Collection#add})
161 >     * @return <tt>true</tt> (as specified by {@link Collection#add})
162       * @throws NullPointerException if the specified element is null
163       */
164      public boolean add(E e) {
# Line 168 | Line 168 | public class ConcurrentLinkedQueue<E> ex
168      /**
169       * Inserts the specified element at the tail of this queue.
170       *
171 <     * @return <tt>true</tt> (as per the spec for {@link Queue#offer})
171 >     * @return <tt>true</tt> (as specified by {@link Queue#offer})
172       * @throws NullPointerException if the specified element is null
173       */
174      public boolean offer(E e) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines