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.73 by jsr166, Mon Jun 6 05:29:30 2011 UTC vs.
Revision 1.74 by jsr166, Mon Jun 6 05:37:29 2011 UTC

# Line 2705 | Line 2705 | public class ConcurrentSkipListMap<K,V>
2705          public V get(Object key) {
2706              if (key == null) throw new NullPointerException();
2707              K k = (K)key;
2708 <            return ((!inBounds(k)) ? null : m.get(k));
2708 >            return (!inBounds(k)) ? null : m.get(k);
2709          }
2710  
2711          public V put(K key, V value) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines