Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jul 10, 2024
1 parent f84c8d6 commit 0bfe65b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,11 @@ public PatriciaTrie() {

/**
* 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);
}

}

0 comments on commit 0bfe65b

Please sign in to comment.