--- jsr166/src/main/java/util/PriorityQueue.java 2011/12/02 14:37:32 1.76 +++ jsr166/src/main/java/util/PriorityQueue.java 2011/12/12 20:53:11 1.77 @@ -725,13 +725,11 @@ public class PriorityQueue extends Ab } /** - * Saves the state of the instance to a stream (that - * is, serializes it). + * Saves this queue to a stream (that is, serializes it). * * @serialData The length of the array backing the instance is * emitted (int), followed by all of its elements * (each an {@code Object}) in the proper order. - * @param s the stream */ private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException { @@ -747,10 +745,7 @@ public class PriorityQueue extends Ab } /** - * Reconstitutes the {@code PriorityQueue} instance from a stream - * (that is, deserializes it). - * - * @param s the stream + * Reconstitutes this queue from a stream (that is, deserializes it). */ private void readObject(java.io.ObjectInputStream s) throws java.io.IOException, ClassNotFoundException {