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

Comparing jsr166/src/main/java/util/concurrent/BlockingDeque.java (file contents):
Revision 1.29 by jsr166, Wed Dec 3 21:55:44 2014 UTC vs.
Revision 1.30 by jsr166, Wed Dec 31 22:40:51 2014 UTC

# Line 589 | Line 589 | public interface BlockingDeque<E> extend
589       * @throws NullPointerException if the specified element is null
590       *         (<a href="../Collection.html#optional-restrictions">optional</a>)
591       */
592 <    public boolean contains(Object o);
592 >    boolean contains(Object o);
593  
594      /**
595       * Returns the number of elements in this deque.
596       *
597       * @return the number of elements in this deque
598       */
599 <    public int size();
599 >    int size();
600  
601      /**
602       * Returns an iterator over the elements in this deque in proper sequence.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines