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

Comparing jsr166/src/main/java/util/AbstractQueue.java (file contents):
Revision 1.10 by tim, Thu Jul 31 14:43:27 2003 UTC vs.
Revision 1.11 by dholmes, Mon Aug 4 01:50:33 2003 UTC

# Line 32 | Line 32 | public abstract class AbstractQueue<E>
32       * @return <tt>true</tt> (as per the general contract of
33       * <tt>Collection.add</tt>).
34       *
35 <     * @throws NullPointerException if the element is null
35 >     * @throws NullPointerException if the specified element is <tt>null</tt>
36       */
37      public boolean add(E o) {
38          if (offer(o))
# Line 54 | Line 54 | public abstract class AbstractQueue<E>
54       * @param c collection whose elements are to be added to this queue
55       * @return <tt>true</tt> if this collection changed as a result of the
56       *         call.
57 <     * @throws NullPointerException if <tt>c</tt> is <tt>null</tt>
58 <     *
57 >     * @throws NullPointerException if <tt>c</tt> or any element in <tt>c</tt>
58 >     * is <tt>null</tt>
59 >     *
60       */
61      public boolean addAll(Collection<? extends E> c) {
62          return super.addAll(c);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines