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.287 by jsr166, Sun Oct 25 03:34:04 2015 UTC vs.
Revision 1.288 by jsr166, Wed Dec 16 02:29:06 2015 UTC

# Line 2529 | Line 2529 | public class ConcurrentHashMap<K,V> exte
2529       * A padded cell for distributing counts.  Adapted from LongAdder
2530       * and Striped64.  See their internal docs for explanation.
2531       */
2532 <    @sun.misc.Contended static final class CounterCell {
2532 >    @jdk.internal.vm.annotation.Contended static final class CounterCell {
2533          volatile long value;
2534          CounterCell(long x) { value = x; }
2535      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines