Skip to content
Snippets Groups Projects
Commit 6cfff6f6 authored by Manuel Kieweg's avatar Manuel Kieweg
Browse files

replace string with const

parent f05ecfad
No related branches found
No related tags found
3 merge requests!95path traversal library,!91"Overhaul Architecture",!90Develop
Pipeline #61124 passed with warnings
......@@ -103,7 +103,7 @@ func appendix(c chan string, stop chan bool,p chan []string) {
func stringBuilder(ch chan string, b *strings.Builder, v *PathElement) {
if b.Len() == 0 {
b.WriteString("/")
b.WriteString(DELIM)
}
b.WriteString(v.Name)
if v.Children != nil {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment