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.21 by jsr166, Wed Jul 29 18:13:43 2009 UTC vs.
Revision 1.22 by jsr166, Wed Jul 29 20:53:30 2009 UTC

# Line 959 | Line 959 | public class LinkedBlockingDeque<E>
959       * Returns an iterator over the elements in this deque in proper sequence.
960       * The elements will be returned in order from first (head) to last (tail).
961       * The returned {@code Iterator} is a "weakly consistent" iterator that
962 <     * will never throw {@link ConcurrentModificationException},
962 >     * will never throw {@link java.util.ConcurrentModificationException
963 >     * ConcurrentModificationException},
964       * and guarantees to traverse elements as they existed upon
965       * construction of the iterator, and may (but is not guaranteed to)
966       * reflect any modifications subsequent to construction.
# Line 975 | Line 976 | public class LinkedBlockingDeque<E>
976       * sequential order.  The elements will be returned in order from
977       * last (tail) to first (head).
978       * The returned {@code Iterator} is a "weakly consistent" iterator that
979 <     * will never throw {@link ConcurrentModificationException},
979 >     * will never throw {@link java.util.ConcurrentModificationException
980 >     * ConcurrentModificationException},
981       * and guarantees to traverse elements as they existed upon
982       * construction of the iterator, and may (but is not guaranteed to)
983       * reflect any modifications subsequent to construction.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines