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

Comparing jsr166/src/main/java/util/concurrent/CopyOnWriteArrayList.java (file contents):
Revision 1.86 by jsr166, Tue Oct 25 20:45:17 2011 UTC vs.
Revision 1.87 by jsr166, Mon Dec 12 20:53:11 2011 UTC

# Line 817 | Line 817 | public class CopyOnWriteArrayList<E>
817      }
818  
819      /**
820 <     * Saves the state of the list to a stream (that is, serializes it).
820 >     * Saves this list to a stream (that is, serializes it).
821       *
822       * @serialData The length of the array backing the list is emitted
823       *               (int), followed by all of its elements (each an Object)
824       *               in the proper order.
825     * @param s the stream
825       */
826      private void writeObject(java.io.ObjectOutputStream s)
827          throws java.io.IOException {
# Line 839 | Line 838 | public class CopyOnWriteArrayList<E>
838      }
839  
840      /**
841 <     * Reconstitutes the list from a stream (that is, deserializes it).
843 <     *
844 <     * @param s the stream
841 >     * Reconstitutes this list from a stream (that is, deserializes it).
842       */
843      private void readObject(java.io.ObjectInputStream s)
844          throws java.io.IOException, ClassNotFoundException {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines