--- jsr166/src/jsr166x/ConcurrentSkipListMap.java 2012/12/29 23:55:19 1.20 +++ jsr166/src/jsr166x/ConcurrentSkipListMap.java 2012/12/30 02:05:53 1.21 @@ -1196,7 +1196,7 @@ public class ConcurrentSkipListMap } /** - * Version of remove with boolean return. Needed by view classes + * Version of remove with boolean return. Needed by view classes. */ boolean removep(Object key) { return doRemove(key, null) != null; @@ -3095,7 +3095,7 @@ public class ConcurrentSkipListMap } /** - * Returns underlying map. Needed by ConcurrentSkipListSet + * Returns underlying map. Needed by ConcurrentSkipListSet. * @return the backing map */ ConcurrentSkipListMap getMap() { @@ -3103,7 +3103,7 @@ public class ConcurrentSkipListMap } /** - * Returns least key. Needed by ConcurrentSkipListSet + * Returns least key. Needed by ConcurrentSkipListSet. * @return least key or null if from start */ K getLeast() { @@ -3111,7 +3111,7 @@ public class ConcurrentSkipListMap } /** - * Returns fence key. Needed by ConcurrentSkipListSet + * Returns fence key. Needed by ConcurrentSkipListSet. * @return fence key or null of to end */ K getFence() {