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.62 by jsr166, Wed Aug 23 20:17:53 2017 UTC vs.
Revision 1.63 by jsr166, Mon Oct 1 00:10:53 2018 UTC

# Line 140 | Line 140 | import java.util.Queue;
140   * the {@code BlockingQueue} in another thread.
141   *
142   * <p>This interface is a member of the
143 < * <a href="{@docRoot}/java/util/package-summary.html#CollectionsFramework">
143 > * <a href="{@docRoot}/java.base/java/util/package-summary.html#CollectionsFramework">
144   * Java Collections Framework</a>.
145   *
146   * @since 1.5
# Line 273 | Line 273 | public interface BlockingQueue<E> extend
273       * @return {@code true} if this queue changed as a result of the call
274       * @throws ClassCastException if the class of the specified element
275       *         is incompatible with this queue
276 <     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
276 >     * (<a href="{@docRoot}/java.base/java/util/Collection.html#optional-restrictions">optional</a>)
277       * @throws NullPointerException if the specified element is null
278 <     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
278 >     * (<a href="{@docRoot}/java.base/java/util/Collection.html#optional-restrictions">optional</a>)
279       */
280      boolean remove(Object o);
281  
# Line 288 | Line 288 | public interface BlockingQueue<E> extend
288       * @return {@code true} if this queue contains the specified element
289       * @throws ClassCastException if the class of the specified element
290       *         is incompatible with this queue
291 <     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
291 >     * (<a href="{@docRoot}/java.base/java/util/Collection.html#optional-restrictions">optional</a>)
292       * @throws NullPointerException if the specified element is null
293 <     * (<a href="{@docRoot}/../api/java/util/Collection.html#optional-restrictions">optional</a>)
293 >     * (<a href="{@docRoot}/java.base/java/util/Collection.html#optional-restrictions">optional</a>)
294       */
295      boolean contains(Object o);
296  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines