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
The following commit(s) were added to refs/heads/master by this push: new 0bfe65b69 Javadoc 0bfe65b69 is described below commit 0bfe65b691f97d64ba0b97546656f68d303fe2e6 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Jul 10 08:34:53 2024 -0400 Javadoc --- .../java/org/apache/commons/collections4/trie/PatriciaTrie.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/trie/PatriciaTrie.java b/src/main/java/org/apache/commons/collections4/trie/PatriciaTrie.java index 5cd28a65a..07e74e4f5 100644 --- a/src/main/java/org/apache/commons/collections4/trie/PatriciaTrie.java +++ b/src/main/java/org/apache/commons/collections4/trie/PatriciaTrie.java @@ -75,9 +75,11 @@ public class PatriciaTrie<V> extends AbstractPatriciaTrie<String, V> { /** * Constructs a new instance. + * + * @param map mappings to be stored in this map. */ - public PatriciaTrie(final Map<? extends String, ? extends V> m) { - super(StringKeyAnalyzer.INSTANCE, m); + public PatriciaTrie(final Map<? extends String, ? extends V> map) { + super(StringKeyAnalyzer.INSTANCE, map); } }