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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentMap.java (file contents):
Revision 1.53 by jsr166, Wed Dec 31 07:54:13 2014 UTC vs.
Revision 1.54 by jsr166, Wed Dec 31 08:20:26 2014 UTC

# Line 334 | Line 334 | public interface ConcurrentMap<K,V> exte
334                  if (replace(key, oldValue, newValue))
335                      return newValue;
336              } else if (remove(key, oldValue))
337 <               return null;
337 >                return null;
338          }
339          return oldValue;
340      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines