This commit is contained in:
Gary Gregory 2024-07-10 08:34:53 -04:00
parent f84c8d6ea1
commit 0bfe65b691

View File

@ -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);
}
}