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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentHashMap.java (file contents):
Revision 1.265 by jsr166, Tue Feb 17 20:03:22 2015 UTC vs.
Revision 1.266 by dl, Mon Feb 23 19:51:36 2015 UTC

# Line 1649 | Line 1649 | public class ConcurrentHashMap<K,V> exte
1649                          if (fh >= 0) {
1650                              binCount = 1;
1651                              for (Node<K,V> e = f;; ++binCount) {
1652 <                                K ek; V ev;
1652 >                                K ek;
1653                                  if (e.hash == h &&
1654                                      ((ek = e.key) == key ||
1655                                       (ek != null && key.equals(ek)))) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines