perf(config): optimize getfullname (#5328)

Co-authored-by: qiuwenhao <qiushaotest@qq.com>
This commit is contained in:
Qiu shao
2025-12-10 22:46:26 +08:00
committed by GitHub
parent 7b23f73268
commit 4ff3975c5a
2 changed files with 21 additions and 1 deletions

View File

@@ -368,5 +368,5 @@ func getFullName(parent, child string) string {
return child
}
return strings.Join([]string{parent, child}, ".")
return parent + "." + child
}