--- jsr166/src/jsr166x/ConcurrentSkipListSet.java 2012/12/29 23:55:19 1.15 +++ jsr166/src/jsr166x/ConcurrentSkipListSet.java 2012/12/30 00:05:22 1.16 @@ -15,9 +15,9 @@ import java.util.concurrent.*; * ascending order, sorted according to the natural order for * the element's class (see {@link Comparable}), or by the comparator * provided at creation time, depending on which constructor is - * used.

+ * used. * - * This implementation provides expected average log(n) time + *

This implementation provides expected average log(n) time * cost for the contains, add, and remove * operations and their variants. Insertion, removal, and access * operations safely execute concurrently by multiple