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

Comparing jsr166/src/main/java/util/Deque.java (file contents):
Revision 1.28 by jsr166, Tue Nov 12 23:23:05 2013 UTC vs.
Revision 1.30 by jsr166, Tue Dec 2 05:48:28 2014 UTC

# Line 159 | Line 159 | package java.util;
159   * @author Doug Lea
160   * @author Josh Bloch
161   * @since  1.6
162 < * @param <E> the type of elements held in this collection
162 > * @param <E> the type of elements held in this deque
163   */
164   public interface Deque<E> extends Queue<E> {
165      /**
# Line 315 | Line 315 | public interface Deque<E> extends Queue<
315       * Removes the first occurrence of the specified element from this deque.
316       * If the deque does not contain the element, it is unchanged.
317       * More formally, removes the first element {@code e} such that
318 <     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
319 <     * (if such an element exists).
318 >     * {@code Objects.equals(o, e)} (if such an element exists).
319       * Returns {@code true} if this deque contained the specified element
320       * (or equivalently, if this deque changed as a result of the call).
321       *
# Line 334 | Line 333 | public interface Deque<E> extends Queue<
333       * Removes the last occurrence of the specified element from this deque.
334       * If the deque does not contain the element, it is unchanged.
335       * More formally, removes the last element {@code e} such that
336 <     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
338 <     * (if such an element exists).
336 >     * {@code Objects.equals(o, e)} (if such an element exists).
337       * Returns {@code true} if this deque contained the specified element
338       * (or equivalently, if this deque changed as a result of the call).
339       *
# Line 490 | Line 488 | public interface Deque<E> extends Queue<
488       * Removes the first occurrence of the specified element from this deque.
489       * If the deque does not contain the element, it is unchanged.
490       * More formally, removes the first element {@code e} such that
491 <     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>
494 <     * (if such an element exists).
491 >     * {@code Objects.equals(o, e)} (if such an element exists).
492       * Returns {@code true} if this deque contained the specified element
493       * (or equivalently, if this deque changed as a result of the call).
494       *
# Line 510 | Line 507 | public interface Deque<E> extends Queue<
507      /**
508       * Returns {@code true} if this deque contains the specified element.
509       * More formally, returns {@code true} if and only if this deque contains
510 <     * at least one element {@code e} such that
514 <     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
510 >     * at least one element {@code e} such that {@code Objects.equals(o, e)}.
511       *
512       * @param o element whose presence in this deque is to be tested
513       * @return {@code true} if this deque contains the specified element

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines