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.130 by jsr166, Wed Aug 7 08:57:25 2013 UTC vs.
Revision 1.131 by jsr166, Thu Aug 8 04:23:21 2013 UTC

# Line 3514 | Line 3514 | public class ConcurrentSkipListMap<K,V>
3514                  return Map.Entry.comparingByKey(comparator);
3515              }
3516              else {
3517 <                return (Comparator<Map.Entry<K, V>> & Serializable) (e1, e2) -> {
3517 >                return (Comparator<Map.Entry<K,V>> & Serializable) (e1, e2) -> {
3518                      @SuppressWarnings("unchecked")
3519                      Comparable<? super K> k1 = (Comparable<? super K>) e1.getKey();
3520                      return k1.compareTo(e2.getKey());

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines