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.116 by dl, Thu Apr 18 00:01:10 2013 UTC vs.
Revision 1.117 by jsr166, Thu Apr 18 06:22:47 2013 UTC

# Line 3828 | Line 3828 | public class ConcurrentSkipListMap<K,V>
3828                              n.helpDelete(b, n.next);
3829                          }
3830                          if (n != null && (sk = n.key) != null &&
3831 <                            (cmp != null ?
3831 >                            (cmp != null ?
3832                               (cmp.compare(sk, ek) > 0) :
3833                               ((Comparable<? super K>)sk).compareTo(ek) > 0) &&
3834                              (f == null ||
3835 <                             (cmp != null ?
3835 >                             (cmp != null ?
3836                                (cmp.compare(sk, f) < 0) :
3837                                ((Comparable<? super K>)sk).compareTo(f) < 0))) {
3838                              current = n;
# Line 3921 | Line 3921 | public class ConcurrentSkipListMap<K,V>
3921                              n.helpDelete(b, n.next);
3922                          }
3923                          if (n != null && (sk = n.key) != null &&
3924 <                            (cmp != null ?
3924 >                            (cmp != null ?
3925                               (cmp.compare(sk, ek) > 0) :
3926                               ((Comparable<? super K>)sk).compareTo(ek) > 0) &&
3927                              (f == null ||
3928 <                             (cmp != null ?
3928 >                             (cmp != null ?
3929                                (cmp.compare(sk, f) < 0) :
3930                                ((Comparable<? super K>)sk).compareTo(f) < 0))) {
3931                              current = n;
# Line 4012 | Line 4012 | public class ConcurrentSkipListMap<K,V>
4012                              n.helpDelete(b, n.next);
4013                          }
4014                          if (n != null && (sk = n.key) != null &&
4015 <                            (cmp != null ?
4015 >                            (cmp != null ?
4016                               (cmp.compare(sk, ek) > 0) :
4017                               ((Comparable<? super K>)sk).compareTo(ek) > 0) &&
4018                              (f == null ||
4019 <                             (cmp != null ?
4019 >                             (cmp != null ?
4020                                (cmp.compare(sk, f) < 0) :
4021                                ((Comparable<? super K>)sk).compareTo(f) < 0))) {
4022                              current = n;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines