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 9da464a2a74f598cf3d43c50a6c7eda65baa2e66 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jun 23 15:57:05 2024 -0400 Javadoc --- .../apache/commons/collections4/bidimap/DualLinkedHashBidiMap.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/org/apache/commons/collections4/bidimap/DualLinkedHashBidiMap.java b/src/main/java/org/apache/commons/collections4/bidimap/DualLinkedHashBidiMap.java index f0b4bdb68..20143bfe4 100644 --- a/src/main/java/org/apache/commons/collections4/bidimap/DualLinkedHashBidiMap.java +++ b/src/main/java/org/apache/commons/collections4/bidimap/DualLinkedHashBidiMap.java @@ -86,6 +86,13 @@ public class DualLinkedHashBidiMap<K, V> extends AbstractDualBidiMap<K, V> imple return new DualLinkedHashBidiMap<>(normalMap, reverseMap, inverseBidiMap); } + /** + * Deserializes an instance from an ObjectInputStream. + * + * @param in The source ObjectInputStream. + * @throws IOException Any of the usual Input/Output related exceptions. + * @throws ClassNotFoundException A class of a serialized object cannot be found. + */ private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException { in.defaultReadObject(); normalMap = new LinkedHashMap<>();