Skip to content

Commit

Permalink
Data cache
Browse files Browse the repository at this point in the history
  • Loading branch information
mapeng committed Sep 19, 2023
1 parent e017b05 commit 0b47a24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class TrieNode {

private final String _nodeKey;

TrieNode(String path, String nodeKey) {
public TrieNode(String path, String nodeKey) {
_path = path;
_nodeKey = nodeKey;
_children = new HashMap<>();
Expand Down

0 comments on commit 0b47a24

Please sign in to comment.