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

Comparing jsr166/src/main/java/util/concurrent/BlockingQueue.java (file contents):
Revision 1.56 by jsr166, Tue Feb 17 18:55:39 2015 UTC vs.
Revision 1.57 by jsr166, Wed Sep 30 00:03:02 2015 UTC

# Line 274 | Line 274 | public interface BlockingQueue<E> extend
274       * @return {@code true} if this queue changed as a result of the call
275       * @throws ClassCastException if the class of the specified element
276       *         is incompatible with this queue
277 <     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
277 >     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
278       * @throws NullPointerException if the specified element is null
279 <     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
279 >     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
280       */
281      boolean remove(Object o);
282  
# Line 289 | Line 289 | public interface BlockingQueue<E> extend
289       * @return {@code true} if this queue contains the specified element
290       * @throws ClassCastException if the class of the specified element
291       *         is incompatible with this queue
292 <     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
292 >     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
293       * @throws NullPointerException if the specified element is null
294 <     *         (<a href="../Collection.html#optional-restrictions">optional</a>)
294 >     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
295       */
296      boolean contains(Object o);
297  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines