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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentSkipListMap.java (file contents):
Revision 1.119 by jsr166, Fri Apr 19 17:49:11 2013 UTC vs.
Revision 1.120 by jsr166, Fri Apr 19 17:54:06 2013 UTC

# Line 341 | Line 341 | public class ConcurrentSkipListMap<K,V>
341      /**
342       * The comparator used to maintain order in this map, or null if
343       * using natural ordering.  (Non-private to simplify access in
344 <     * nested clases.)
344 >     * nested classes.)
345       * @serial
346       */
347      final Comparator<? super K> comparator;
# Line 3311 | Line 3311 | public class ConcurrentSkipListMap<K,V>
3311              return comparator;
3312          }
3313      }
3314 <    // factory method for Keyspliterator
3314 >    // factory method for KeySpliterator
3315      final KeySpliterator<K,V> keySpliterator() {
3316          Comparator<? super K> cmp = comparator;
3317          for (;;) { // ensure h corresponds to origin p

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines