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 ba4cabc4227582780f5eb89a0a08044ab247d28f
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jun 23 16:10:09 2024 -0400

    Javadoc
---
 .../java/org/apache/commons/collections4/trie/PatriciaTrie.java     | 6 ++++++
 1 file changed, 6 insertions(+)

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 26f327820..5cd28a65a 100644
--- a/src/main/java/org/apache/commons/collections4/trie/PatriciaTrie.java
+++ b/src/main/java/org/apache/commons/collections4/trie/PatriciaTrie.java
@@ -66,10 +66,16 @@ public class PatriciaTrie<V> extends 
AbstractPatriciaTrie<String, V> {
 
     private static final long serialVersionUID = 4446367780901817838L;
 
+    /**
+     * Constructs a new instance.
+     */
     public PatriciaTrie() {
         super(StringKeyAnalyzer.INSTANCE);
     }
 
+    /**
+     * Constructs a new instance.
+     */
     public PatriciaTrie(final Map<? extends String, ? extends V> m) {
         super(StringKeyAnalyzer.INSTANCE, m);
     }

Reply via email to