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

Comparing jsr166/src/jsr166e/extra/AtomicDoubleArray.java (file contents):
Revision 1.9 by jsr166, Mon Mar 4 16:09:25 2013 UTC vs.
Revision 1.11 by jsr166, Mon Jul 22 16:47:46 2013 UTC

# Line 164 | Line 164 | public class AtomicDoubleArray implement
164       *
165       * <p><a
166       * href="http://download.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/package-summary.html#Spurious">
167
167       * May fail spuriously and does not provide ordering guarantees</a>,
168       * so is only rarely an appropriate alternative to {@code compareAndSet}.
169       *
# Line 238 | Line 237 | public class AtomicDoubleArray implement
237      /**
238       * Saves the state to a stream (that is, serializes it).
239       *
240 +     * @param s the stream
241 +     * @throws java.io.IOException if an I/O error occurs
242       * @serialData The length of the array is emitted (int), followed by all
243       *             of its elements (each a {@code double}) in the proper order.
244       */
# Line 256 | Line 257 | public class AtomicDoubleArray implement
257  
258      /**
259       * Reconstitutes the instance from a stream (that is, deserializes it).
260 +     * @param s the stream
261 +     * @throws ClassNotFoundException if the class of a serialized object
262 +     *         could not be found
263 +     * @throws java.io.IOException if an I/O error occurs
264       */
265      private void readObject(java.io.ObjectInputStream s)
266          throws java.io.IOException, ClassNotFoundException {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines