--- jsr166/src/jsr166e/extra/AtomicDouble.java 2011/08/10 01:29:45 1.5 +++ jsr166/src/jsr166e/extra/AtomicDouble.java 2011/10/19 23:01:30 1.7 @@ -31,6 +31,9 @@ import static java.lang.Double.longBitsT * return xBits == yBits; * }} * + * @see jsr166e.DoubleAdder + * @see jsr166e.DoubleMaxUpdater + * * @author Doug Lea * @author Martin Buchholz */ @@ -40,7 +43,7 @@ public class AtomicDouble extends Number private volatile long value; /** - * Creates a new AtomicDouble with the given initial value. + * Creates a new {@code AtomicDouble} with the given initial value. * * @param initialValue the initial value */ @@ -49,7 +52,7 @@ public class AtomicDouble extends Number } /** - * Creates a new AtomicDouble with initial value {@code 0.0}. + * Creates a new {@code AtomicDouble} with initial value {@code 0.0}. */ public AtomicDouble() { this(0.0); } @@ -241,5 +244,4 @@ public class AtomicDouble extends Number } } } - }