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.14 by dl, Fri Sep 12 15:38:26 2003 UTC vs.
Revision 1.15 by dl, Fri Sep 12 17:13:11 2003 UTC

# Line 45 | Line 45 | public abstract class AbstractQueue<E>
45       *         this queue, else <tt>false</tt>
46       * @throws NullPointerException if the specified element is <tt>null</tt>
47       */
48 <    //    public boolean offer(E o) { return false; }
48 >    public boolean offer(E o) { return false; }
49      // FIXME: Replace above no-op with following abstract version
50      // when javac allows it.
51 <    public abstract boolean offer(E o);
51 >    //    public abstract boolean offer(E o);
52  
53      /**
54       * Adds the specified element to this queue. This implementation

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines