Skip to content

Commit acdb27c

Browse files
committed
add missing javadoc
Signed-off-by: Kaushal Kumar <ravi.kaushal97@gmail.com>
1 parent 24c4ea6 commit acdb27c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

plugins/workload-management/src/main/java/org/opensearch/plugin/wlm/rule/storage/DefaultAttributeValueStore.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@
2222
public class DefaultAttributeValueStore<K extends String, V> implements AttributeValueStore<K, V> {
2323
PatriciaTrie<V> trie;
2424

25+
/**
26+
* Default constructor
27+
*/
28+
public DefaultAttributeValueStore() {
29+
this(new PatriciaTrie<>());
30+
}
31+
32+
/**
33+
* Main constructor
34+
* @param trie A Patricia Trie
35+
*/
2536
public DefaultAttributeValueStore(PatriciaTrie<V> trie) {
2637
this.trie = trie;
2738
}

0 commit comments

Comments
 (0)