From 603b2f708442cc8cf4e7e6766d0044cfe60c564f Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 23 Jun 2024 16:27:50 -0400 Subject: [PATCH] Javadoc --- .../apache/commons/collections4/bidimap/TreeBidiMap.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/bidimap/TreeBidiMap.java b/src/main/java/org/apache/commons/collections4/bidimap/TreeBidiMap.java index 8ebaea097..2697fa165 100644 --- a/src/main/java/org/apache/commons/collections4/bidimap/TreeBidiMap.java +++ b/src/main/java/org/apache/commons/collections4/bidimap/TreeBidiMap.java @@ -2219,10 +2219,10 @@ public class TreeBidiMap, V extends Comparable> } /** - * Writes the content to the stream for serialization. + * Serializes this object to an ObjectOutputStream. * - * @param stream the output stream - * @throws IOException if an error occurs while writing to the stream + * @param out the target ObjectOutputStream. + * @throws IOException thrown when an I/O errors occur writing to the target stream. */ private void writeObject(final ObjectOutputStream stream) throws IOException { stream.defaultWriteObject();