mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-08 02:59:29 +00:00
Javadoc
This commit is contained in:
parent
dacfd64922
commit
ba4cabc422
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user