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

Comparing jsr166/src/main/java/util/ArrayDeque.java (file contents):
Revision 1.55 by jsr166, Thu May 2 06:02:17 2013 UTC vs.
Revision 1.57 by jsr166, Thu Jul 18 18:21:22 2013 UTC

# Line 810 | Line 810 | public class ArrayDeque<E> extends Abstr
810      /**
811       * Saves this deque to a stream (that is, serializes it).
812       *
813 +     * @param s the stream
814 +     * @throws java.io.IOException if an I/O error occurs
815       * @serialData The current size ({@code int}) of the deque,
816       * followed by all of its elements (each an object reference) in
817       * first-to-last order.
# Line 829 | Line 831 | public class ArrayDeque<E> extends Abstr
831  
832      /**
833       * Reconstitutes this deque from a stream (that is, deserializes it).
834 +     * @param s the stream
835 +     * @throws ClassNotFoundException if the class of a serialized object
836 +     *         could not be found
837 +     * @throws java.io.IOException if an I/O error occurs
838       */
839      private void readObject(java.io.ObjectInputStream s)
840              throws java.io.IOException, ClassNotFoundException {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines