We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1516d3 commit 701ea8cCopy full SHA for 701ea8c
polaris-common/polaris-model/src/main/java/com/tencent/polaris/api/utils/TrieUtil.java
@@ -57,7 +57,7 @@ public static TrieNode<String> buildSimpleApiTrieNode(String[] apiPathInfoList)
57
// 临时简化处理,不处理 method,前面逻辑保留是为了取出正确的 path
58
method = null;
59
TrieNode<String> node = root;
60
- // 一些场景下apiPath 不以"/"开头和分割(
+ // 一些场景下apiPath 不以"/"开头和分割
61
// 此时方法标识符的格式规定为 '{类路径}#{方法名}' 例如com.tencent.polaris.ServiceName#sayHello
62
if (path.contains("#")) {
63
node = node.getOrCreateSubNode(path);
0 commit comments