--- jsr166/src/jsr166e/ConcurrentHashMapV8.java 2012/07/05 06:26:14 1.45 +++ jsr166/src/jsr166e/ConcurrentHashMapV8.java 2012/07/06 21:37:40 1.47 @@ -195,18 +195,6 @@ public class ConcurrentHashMapV8 * already commenced traversing elements */ Spliterator split(); - - /** - * Returns a Spliterator producing the same elements as this - * Spliterator. This method may be used for example to create - * a second Spliterator before a traversal, in order to later - * perform a second traversal. - * - * @return a Spliterator covering the same range as this Spliterator. - * @throws IllegalStateException if this Spliterator has - * already commenced traversing elements - */ - Spliterator clone(); } /* @@ -2199,7 +2187,7 @@ public class ConcurrentHashMapV8 baseLimit = baseSize = (tab == null) ? 0 : tab.length; } - /** Creates iterator for clone() and split() methods */ + /** Creates iterator for clone() and split() methods. */ InternalIterator(InternalIterator it, boolean split) { this.map = it.map; this.tab = it.tab;