From 0bfe65b691f97d64ba0b97546656f68d303fe2e6 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Wed, 10 Jul 2024 08:34:53 -0400 Subject: [PATCH] Javadoc --- .../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 5cd28a65af..07e74e4f53 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 PatriciaTrie() { /** * Constructs a new instance. + * + * @param map mappings to be stored in this map. */ - public PatriciaTrie(final Map m) { - super(StringKeyAnalyzer.INSTANCE, m); + public PatriciaTrie(final Map map) { + super(StringKeyAnalyzer.INSTANCE, map); } }