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 d23e7f6249e7cb06b42a69df3866409c9313452d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jun 23 16:34:21 2024 -0400 Javadoc --- .../commons/collections4/multimap/ArrayListValuedHashMap.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/org/apache/commons/collections4/multimap/ArrayListValuedHashMap.java b/src/main/java/org/apache/commons/collections4/multimap/ArrayListValuedHashMap.java index 00913c728..c46b91fce 100644 --- a/src/main/java/org/apache/commons/collections4/multimap/ArrayListValuedHashMap.java +++ b/src/main/java/org/apache/commons/collections4/multimap/ArrayListValuedHashMap.java @@ -141,6 +141,12 @@ public class ArrayListValuedHashMap<K, V> extends AbstractListValuedMap<K, V> } } + /** + * 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(); doWriteObject(out);