This commit is contained in:
Gary Gregory 2024-06-23 16:10:09 -04:00
parent dacfd64922
commit ba4cabc422
1 changed files with 6 additions and 0 deletions

View File

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