internal/debug: make gosimple linter happy

This commit is contained in:
Péter Szilágyi 2021-09-20 18:55:35 +03:00
parent e28f713ada
commit 9bf495bfc9
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D

View File

@ -207,7 +207,7 @@ func (*HandlerT) Stacks(filter *string) string {
// interpreter:
//
// E.g. (eth || snap) && !p2p -> (eth in Value || snap in Value) && p2p not in Value
expanded = regexp.MustCompile("[:/\\.A-Za-z0-9_-]+").ReplaceAllString(expanded, "`$0` in Value")
expanded = regexp.MustCompile(`[:/\.A-Za-z0-9_-]+`).ReplaceAllString(expanded, "`$0` in Value")
expanded = regexp.MustCompile("!(`[:/\\.A-Za-z0-9_-]+`)").ReplaceAllString(expanded, "$1 not")
expanded = strings.Replace(expanded, "||", "or", -1)
expanded = strings.Replace(expanded, "&&", "and", -1)