--- jsr166/src/jsr166e/ConcurrentHashMapV8.java 2012/07/04 20:28:46 1.44 +++ jsr166/src/jsr166e/ConcurrentHashMapV8.java 2012/07/05 06:26:14 1.45 @@ -192,7 +192,7 @@ public class ConcurrentHashMapV8 * @return a Spliterator covering approximately half of the * elements * @throws IllegalStateException if this Spliterator has - * already commenced traversing elements. + * already commenced traversing elements */ Spliterator split(); @@ -204,7 +204,7 @@ public class ConcurrentHashMapV8 * * @return a Spliterator covering the same range as this Spliterator. * @throws IllegalStateException if this Spliterator has - * already commenced traversing elements. + * already commenced traversing elements */ Spliterator clone(); } @@ -806,7 +806,7 @@ public class ConcurrentHashMapV8 } /** - * Find or add a node + * Finds or adds a node. * @return null if added */ @SuppressWarnings("unchecked") // suppress Comparable cast warning @@ -2012,8 +2012,8 @@ public class ConcurrentHashMapV8 } /** - * Split a normal bin with list headed by e into lo and hi parts; - * install in given table + * Splits a normal bin with list headed by e into lo and hi parts; + * installs in given table. */ private static void splitBin(Node[] nextTab, int i, Node e) { int bit = nextTab.length >>> 1; // bit to split on @@ -2043,7 +2043,7 @@ public class ConcurrentHashMapV8 } /** - * Split a tree bin into lo and hi parts; install in given table + * Splits a tree bin into lo and hi parts; installs in given table. */ private static void splitTreeBin(Node[] nextTab, int i, TreeBin t) { int bit = nextTab.length >>> 1;