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

Comparing jsr166/src/jsr166e/LongAdderTable.java (file contents):
Revision 1.8 by jsr166, Sun Oct 9 20:12:04 2011 UTC vs.
Revision 1.9 by dl, Mon Aug 13 15:52:33 2012 UTC

# Line 31 | Line 31 | public class LongAdderTable<K> implement
31      private final ConcurrentHashMapV8<K, LongAdder> map;
32  
33      static final class CreateAdder
34 <        implements ConcurrentHashMapV8.MappingFunction<Object, LongAdder> {
35 <        public LongAdder map(Object unused) { return new LongAdder(); }
34 >        implements ConcurrentHashMapV8.Fun<Object, LongAdder> {
35 >        public LongAdder apply(Object unused) { return new LongAdder(); }
36      }
37  
38      private static final CreateAdder createAdder = new CreateAdder();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines