Skip to content

Commit

Permalink
fix javadoc issues (#9)
Browse files Browse the repository at this point in the history
Signed-off-by: Karim TAAM <[email protected]>
  • Loading branch information
matkt authored Nov 10, 2023
1 parent b2ce2f2 commit 6d37b56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -257,3 +257,4 @@ task checkSpdxHeader(type: CheckSpdxHeader) {

check.dependsOn checkSpdxHeader
build.dependsOn spotlessApply
build.dependsOn javadoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class StoredVerkleTrie<K extends Bytes, V extends Bytes> extends SimpleVe
/**
* Create a trie.
*
* @param nodeFactory The {@link StoredNodeFactory} to retrieve node.
* @param nodeFactory The {@link NodeFactory} to retrieve node.
*/
public StoredVerkleTrie(final NodeFactory<V> nodeFactory) {
super(nodeFactory.retrieve(Bytes.EMPTY, null).orElse(NullNode.instance()));
Expand Down

0 comments on commit 6d37b56

Please sign in to comment.