--- jsr166/src/jsr166e/ConcurrentHashMapV8.java 2011/09/10 01:35:15 1.18 +++ jsr166/src/jsr166e/ConcurrentHashMapV8.java 2011/09/10 05:13:37 1.20 @@ -85,7 +85,7 @@ import java.io.Serializable; *

jsr166e note: This class is a candidate replacement for * java.util.concurrent.ConcurrentHashMap. * - * @since 1.5 + * @since 1.8 * @author Doug Lea * @param the type of keys maintained by this map * @param the type of mapped values @@ -422,7 +422,7 @@ public class ConcurrentHashMapV8 return table; } - /* + /** * Reclassifies nodes in each bin to new table. Because we are * using power-of-two expansion, the elements from each bin must * either stay at same index, or move with a power of two @@ -901,8 +901,6 @@ public class ConcurrentHashMapV8 * establishing the initial table size * @throws IllegalArgumentException if the initial capacity of * elements is negative or the load factor is nonpositive - * - * @since 1.6 */ public ConcurrentHashMapV8(int initialCapacity, float loadFactor) { this(initialCapacity, loadFactor, 1);