--- jsr166/src/jsr166e/LongAdderTable.java 2011/08/29 17:06:20 1.3 +++ jsr166/src/jsr166e/LongAdderTable.java 2011/09/10 01:38:28 1.5 @@ -20,6 +20,7 @@ import java.io.Serializable; *

jsr166e note: This class is targeted to be placed in * java.util.concurrent.atomic * + * @since 1.8 * @author Doug Lea */ public class LongAdderTable implements Serializable { @@ -29,7 +30,7 @@ public class LongAdderTable implement /** The underlying map */ private final ConcurrentHashMapV8 map; - static final class CreateAdder + static final class CreateAdder implements ConcurrentHashMapV8.MappingFunction { public LongAdder map(Object unused) { return new LongAdder(); } }