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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentHashMap.java (file contents):
Revision 1.13 by dl, Fri Aug 1 22:48:54 2003 UTC vs.
Revision 1.14 by dl, Wed Aug 6 11:11:49 2003 UTC

# Line 772 | Line 772 | public class ConcurrentHashMap<K, V> ext
772       * <tt>Set.remove</tt>, <tt>removeAll</tt>, <tt>retainAll</tt>, and
773       * <tt>clear</tt> operations.  It does not support the <tt>add</tt> or
774       * <tt>addAll</tt> operations.
775 +     * The returned <tt>iterator</tt> is a "weakly consistent" iterator that
776 +     * will never throw {@link java.util.ConcurrentModificationException},
777 +     * and guarantees to traverse elements as they existed upon
778 +     * construction of the iterator, and may (but is not guaranteed to)
779 +     * reflect any modifications subsequent to construction.
780       *
781       * @return a set view of the keys contained in this map.
782       */
# Line 789 | Line 794 | public class ConcurrentHashMap<K, V> ext
794       * <tt>Iterator.remove</tt>, <tt>Collection.remove</tt>,
795       * <tt>removeAll</tt>, <tt>retainAll</tt>, and <tt>clear</tt> operations.
796       * It does not support the <tt>add</tt> or <tt>addAll</tt> operations.
797 +     * The returned <tt>iterator</tt> is a "weakly consistent" iterator that
798 +     * will never throw {@link java.util.ConcurrentModificationException},
799 +     * and guarantees to traverse elements as they existed upon
800 +     * construction of the iterator, and may (but is not guaranteed to)
801 +     * reflect any modifications subsequent to construction.
802       *
803       * @return a collection view of the values contained in this map.
804       */
# Line 807 | Line 817 | public class ConcurrentHashMap<K, V> ext
817       * <tt>Iterator.remove</tt>, <tt>Collection.remove</tt>,
818       * <tt>removeAll</tt>, <tt>retainAll</tt>, and <tt>clear</tt> operations.
819       * It does not support the <tt>add</tt> or <tt>addAll</tt> operations.
820 +     * The returned <tt>iterator</tt> is a "weakly consistent" iterator that
821 +     * will never throw {@link java.util.ConcurrentModificationException},
822 +     * and guarantees to traverse elements as they existed upon
823 +     * construction of the iterator, and may (but is not guaranteed to)
824 +     * reflect any modifications subsequent to construction.
825       *
826       * @return a collection view of the mappings contained in this map.
827       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines