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

Comparing jsr166/src/main/java/util/concurrent/LinkedBlockingQueue.java (file contents):
Revision 1.84 by jsr166, Thu Jul 18 17:38:29 2013 UTC vs.
Revision 1.85 by jsr166, Thu Jul 18 18:21:22 2013 UTC

# Line 954 | Line 954 | public class LinkedBlockingQueue<E> exte
954       * Saves this queue to a stream (that is, serializes it).
955       *
956       * @param s the stream
957 +     * @throws java.io.IOException if an I/O error occurs
958       * @serialData The capacity is emitted (int), followed by all of
959       * its elements (each an {@code Object}) in the proper order,
960       * followed by a null
# Line 980 | Line 981 | public class LinkedBlockingQueue<E> exte
981      /**
982       * Reconstitutes this queue from a stream (that is, deserializes it).
983       * @param s the stream
984 +     * @throws ClassNotFoundException if the class of a serialized object
985 +     *         could not be found
986 +     * @throws java.io.IOException if an I/O error occurs
987       */
988      private void readObject(java.io.ObjectInputStream s)
989          throws java.io.IOException, ClassNotFoundException {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines