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

Comparing jsr166/src/jdk7/java/util/concurrent/ConcurrentSkipListMap.java (file contents):
Revision 1.10 by jsr166, Tue Oct 22 15:21:30 2013 UTC vs.
Revision 1.11 by jsr166, Sun Mar 16 03:31:26 2014 UTC

# Line 2558 | Line 2558 | public class ConcurrentSkipListMap<K,V>
2558          }
2559  
2560          /**
2561 <         * Returns lowest absolute key (ignoring directonality).
2561 >         * Returns lowest absolute key (ignoring directionality).
2562           */
2563          private K lowestKey() {
2564              ConcurrentSkipListMap.Node<K,V> n = loNode();
# Line 2569 | Line 2569 | public class ConcurrentSkipListMap<K,V>
2569          }
2570  
2571          /**
2572 <         * Returns highest absolute key (ignoring directonality).
2572 >         * Returns highest absolute key (ignoring directionality).
2573           */
2574          private K highestKey() {
2575              ConcurrentSkipListMap.Node<K,V> n = hiNode();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines