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.25 by jsr166, Mon Feb 11 17:27:45 2013 UTC vs.
Revision 1.26 by jsr166, Thu May 2 06:38:33 2013 UTC

# Line 608 | Line 608 | public interface BlockingDeque<E> extend
608      // *** Stack methods ***
609  
610      /**
611 <     * Pushes an element onto the stack represented by this deque.  In other
612 <     * words, inserts the element at the front of this deque unless it would
613 <     * violate capacity restrictions.
611 >     * Pushes an element onto the stack represented by this deque (in other
612 >     * words, at the head of this deque) if it is possible to do so
613 >     * immediately without violating capacity restrictions, throwing an
614 >     * {@code IllegalStateException} if no space is currently available.
615       *
616       * <p>This method is equivalent to {@link #addFirst(Object) addFirst}.
617       *

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines