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

Comparing jsr166/src/jsr166e/extra/AtomicDouble.java (file contents):
Revision 1.11 by jsr166, Tue Oct 25 19:21:27 2011 UTC vs.
Revision 1.13 by jsr166, Tue Oct 25 20:30:26 2011 UTC

# Line 40 | Line 40 | import static java.lang.Double.longBitsT
40   public class AtomicDouble extends Number implements java.io.Serializable {
41      private static final long serialVersionUID = -8405198993435143622L;
42  
43 <    private volatile transient long value;
43 >    private transient volatile long value;
44  
45      /**
46       * Creates a new {@code AtomicDouble} with the given initial value.
# Line 216 | Line 216 | public class AtomicDouble extends Number
216       * @serialData The current value is emitted (a {@code double}).
217       */
218      private void writeObject(java.io.ObjectOutputStream s)
219 <        throws java.io.IOException{
219 >        throws java.io.IOException {
220          s.defaultWriteObject();
221  
222          s.writeDouble(get());

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines