ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166x/ConcurrentSkipListMap.java
(Generate patch)

Comparing jsr166/src/jsr166x/ConcurrentSkipListMap.java (file contents):
Revision 1.27 by jsr166, Tue Feb 5 17:32:45 2013 UTC vs.
Revision 1.28 by jsr166, Tue Feb 5 19:54:07 2013 UTC

# Line 468 | Line 468 | public class ConcurrentSkipListMap<K,V>
468           * Returns value if this node contains a valid key-value pair,
469           * else null.
470           * @return this node's value if it isn't a marker or header or
471 <         * is deleted, else null.
471 >         * is deleted, else null
472           */
473          V getValidValue() {
474              Object v = value;
# Line 1601 | Line 1601 | public class ConcurrentSkipListMap<K,V>
1601       * Constructs a new map containing the same mappings as the given
1602       * {@code SortedMap}, sorted according to the same ordering.
1603       * @param m the sorted map whose mappings are to be placed in this
1604 <     * map, and whose comparator is to be used to sort this map.
1604 >     * map, and whose comparator is to be used to sort this map
1605       * @throws NullPointerException if the specified sorted map is
1606 <     * {@code null}.
1606 >     * {@code null}
1607       */
1608      public ConcurrentSkipListMap(SortedMap<K, ? extends V> m) {
1609          this.comparator = m.comparator();
# Line 2212 | Line 2212 | public class ConcurrentSkipListMap<K,V>
2212       * if this map uses its keys' natural order.
2213       *
2214       * @return the comparator associated with this map, or
2215 <     * {@code null} if it uses its keys' natural sort method.
2215 >     * {@code null} if it uses its keys' natural sort method
2216       */
2217      public Comparator<? super K> comparator() {
2218          return comparator;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines