This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
commit 41f0521bda2f0e684ed5e5fbe97a7b6139884375 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jun 23 16:26:59 2024 -0400 Javadoc --- .../org/apache/commons/collections4/bidimap/DualHashBidiMap.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/collections4/bidimap/DualHashBidiMap.java b/src/main/java/org/apache/commons/collections4/bidimap/DualHashBidiMap.java index 557fe7708..0978077da 100644 --- a/src/main/java/org/apache/commons/collections4/bidimap/DualHashBidiMap.java +++ b/src/main/java/org/apache/commons/collections4/bidimap/DualHashBidiMap.java @@ -108,7 +108,12 @@ public class DualHashBidiMap<K, V> extends AbstractDualBidiMap<K, V> implements putAll(map); } - // Serialization + /** + * Serializes this object to an ObjectOutputStream. + * + * @param out the target ObjectOutputStream. + * @throws IOException thrown when an I/O errors occur writing to the target stream. + */ private void writeObject(final ObjectOutputStream out) throws IOException { out.defaultWriteObject(); out.writeObject(normalMap);