summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgujinkai <[email protected]>2024-04-17 18:31:33 +0800
committergujinkai <[email protected]>2024-04-17 18:31:33 +0800
commitc31cb9d54f901fd404f101cf72bcc59444301cc9 (patch)
treecb1ef82e46393777748090728824764ff10e1ded
parent836aa56a117b1b7b594e02d38b956cdfe84ddc06 (diff)
[Feature][core] annotation is changed by auto format
-rw-r--r--groot-core/src/main/java/com/geedgenetworks/core/utils/cn/common/Trie.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/groot-core/src/main/java/com/geedgenetworks/core/utils/cn/common/Trie.java b/groot-core/src/main/java/com/geedgenetworks/core/utils/cn/common/Trie.java
index 313aa4f..4b7ddf7 100644
--- a/groot-core/src/main/java/com/geedgenetworks/core/utils/cn/common/Trie.java
+++ b/groot-core/src/main/java/com/geedgenetworks/core/utils/cn/common/Trie.java
@@ -16,11 +16,11 @@ import java.util.Map;
* how to store:
* if we put "baidu.com":"1" and "baidu.cn":"2" into the trie tree, the tree will be like this:
* root -> b -> a -> i -> d -> u -> . -> c -> o -> m
- * -> n
+ * -> n
* the data "1" is stored in the last node "m" and the data "2" is stored in the last node "n"
* then we put "baidu":"3" into the trie tree, the tree will be like this:
* root -> b -> a -> i -> d -> u -> . -> c -> o -> m
- * -> n
+ * -> n
* the data "3" will be stored in the node "u"
* <p>
* how to get: