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 79a761815b6b1f9f020c1a577e9f1fb14c54811d Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Fri Apr 18 22:09:28 2025 -0400 Javadoc --- .../org/apache/commons/collections4/map/AbstractIterableMap.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/org/apache/commons/collections4/map/AbstractIterableMap.java b/src/main/java/org/apache/commons/collections4/map/AbstractIterableMap.java index 6dcf1a57a..67cabf6ed 100644 --- a/src/main/java/org/apache/commons/collections4/map/AbstractIterableMap.java +++ b/src/main/java/org/apache/commons/collections4/map/AbstractIterableMap.java @@ -28,6 +28,13 @@ import org.apache.commons.collections4.MapIterator; */ public abstract class AbstractIterableMap<K, V> implements IterableMap<K, V> { + /** + * Constructs a new instance for subclasses. + */ + public AbstractIterableMap() { + // empty + } + /** * {@inheritDoc} */