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

Comparing jsr166/src/jsr166e/DoubleAdder.java (file contents):
Revision 1.5 by jsr166, Sun Nov 18 03:07:22 2012 UTC vs.
Revision 1.7 by jsr166, Sun Jan 6 18:50:00 2013 UTC

# Line 19 | Line 19 | import java.io.ObjectOutputStream;
19   * variables maintaining the sum.
20   *
21   * <p>This class extends {@link Number}, but does <em>not</em> define
22 < * methods such as {@code hashCode} and {@code compareTo} because
23 < * instances are expected to be mutated, and so are not useful as
24 < * collection keys.
22 > * methods such as {@code equals}, {@code hashCode} and {@code
23 > * compareTo} because instances are expected to be mutated, and so are
24 > * not useful as collection keys.
25   *
26   * <p><em>jsr166e note: This class is targeted to be placed in
27   * java.util.concurrent.atomic.</em>
# Line 80 | Line 80 | public class DoubleAdder extends Striped
80  
81      /**
82       * Returns the current sum.  The returned value is <em>NOT</em> an
83 <     * atomic snapshot: Invocation in the absence of concurrent
83 >     * atomic snapshot: invocation in the absence of concurrent
84       * updates returns an accurate result, but concurrent updates that
85       * occur while the sum is being calculated might not be
86       * incorporated.  Also, because double-precision arithmetic is not

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines