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

Comparing jsr166/src/main/java/util/concurrent/LinkedBlockingDeque.java (file contents):
Revision 1.78 by jsr166, Sun Jan 1 22:37:34 2017 UTC vs.
Revision 1.79 by jsr166, Wed Apr 19 23:45:51 2017 UTC

# Line 638 | Line 638 | public class LinkedBlockingDeque<E>
638  
639      /**
640       * Retrieves and removes the head of the queue represented by this deque.
641 <     * This method differs from {@link #poll poll} only in that it throws an
641 >     * This method differs from {@link #poll() poll()} only in that it throws an
642       * exception if this deque is empty.
643       *
644       * <p>This method is equivalent to {@link #removeFirst() removeFirst}.
# Line 664 | Line 664 | public class LinkedBlockingDeque<E>
664  
665      /**
666       * Retrieves, but does not remove, the head of the queue represented by
667 <     * this deque.  This method differs from {@link #peek peek} only in that
667 >     * this deque.  This method differs from {@link #peek() peek()} only in that
668       * it throws an exception if this deque is empty.
669       *
670       * <p>This method is equivalent to {@link #getFirst() getFirst}.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines