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.36 by dl, Sat Dec 27 19:26:25 2003 UTC vs.
Revision 1.37 by dl, Mon Dec 29 19:05:22 2003 UTC

# Line 101 | Line 101 | public class ConcurrentHashMap<K, V> ext
101      private static final int DEFAULT_SEGMENTS = 16;
102  
103      /**
104 <     * The maximum number of segments to allow; used to bound ctor arguments.
104 >     * The maximum number of segments to allow; used to bound
105 >     * constructor arguments.
106       */
107      private static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
108  
# Line 131 | Line 132 | public class ConcurrentHashMap<K, V> ext
132  
133      /**
134       * Return a hash code for non-null Object x.
135 <     * Uses the same hash code spreader as most other j.u hash tables.
135 >     * Uses the same hash code spreader as most other java.util hash tables.
136       * @param x the object serving as a key
137       * @return the hash code
138       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines