This commit is contained in:
Gary Gregory 2024-06-23 16:10:09 -04:00
parent dacfd64922
commit ba4cabc422

View File

@ -66,10 +66,16 @@ public class PatriciaTrie<V> extends AbstractPatriciaTrie<String, V> {
private static final long serialVersionUID = 4446367780901817838L; private static final long serialVersionUID = 4446367780901817838L;
/**
* Constructs a new instance.
*/
public PatriciaTrie() { public PatriciaTrie() {
super(StringKeyAnalyzer.INSTANCE); super(StringKeyAnalyzer.INSTANCE);
} }
/**
* Constructs a new instance.
*/
public PatriciaTrie(final Map<? extends String, ? extends V> m) { public PatriciaTrie(final Map<? extends String, ? extends V> m) {
super(StringKeyAnalyzer.INSTANCE, m); super(StringKeyAnalyzer.INSTANCE, m);
} }