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.69 by jsr166, Wed May 18 18:15:01 2005 UTC vs.
Revision 1.70 by jsr166, Sat May 21 02:49:21 2005 UTC

# Line 1028 | Line 1028 | public class ConcurrentHashMap<K, V> ext
1028      /**
1029       * Returns an enumeration of the keys in this table.
1030       *
1031 <     * @return  an enumeration of the keys in this table
1032 <     * @see     #keySet
1031 >     * @return an enumeration of the keys in this table
1032 >     * @see #keySet
1033       */
1034      public Enumeration<K> keys() {
1035          return new KeyIterator();
# Line 1038 | Line 1038 | public class ConcurrentHashMap<K, V> ext
1038      /**
1039       * Returns an enumeration of the values in this table.
1040       *
1041 <     * @return  an enumeration of the values in this table
1042 <     * @see     #values
1041 >     * @return an enumeration of the values in this table
1042 >     * @see #values
1043       */
1044      public Enumeration<V> elements() {
1045          return new ValueIterator();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines