ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166e/ConcurrentHashMapV8.java
(Generate patch)

Comparing jsr166/src/jsr166e/ConcurrentHashMapV8.java (file contents):
Revision 1.79 by dl, Fri Nov 23 17:50:51 2012 UTC vs.
Revision 1.80 by jsr166, Sat Nov 24 03:46:28 2012 UTC

# Line 2523 | Line 2523 | public class ConcurrentHashMapV8<K, V>
2523                      b = (n <= 0L) ? 0 : (n < (long)sp) ? (int)n : sp;
2524                  }
2525              }
2526 <            b = (b <= 1 || baseIndex == baseLimit)? 0 : (b >>> 1);
2526 >            b = (b <= 1 || baseIndex == baseLimit) ? 0 : (b >>> 1);
2527              if ((batch = b) > 0)
2528                  addToPendingCount(1);
2529              return b;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines