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.222 by dl, Mon Jun 17 18:53:58 2013 UTC vs.
Revision 1.223 by jsr166, Mon Jun 17 23:48:05 2013 UTC

# Line 2516 | Line 2516 | public class ConcurrentHashMap<K,V> impl
2516                  U.compareAndSwapInt(this, SIZECTL, sc, -2))
2517                  transfer(tab, null);
2518              else if ((b = tabAt(tab, index)) != null) {
2519 <                synchronized(b) {
2519 >                synchronized (b) {
2520                      if (tabAt(tab, index) == b) {
2521                          TreeNode<K,V> hd = null, tl = null;
2522                          for (Node<K,V> e = b; e != null; e = e.next) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines