internal/debug: make gosimple linter happy

verkle/onleaf
Péter Szilágyi 3 years ago
parent e28f713ada
commit 9bf495bfc9
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D
  1. 2
      internal/debug/api.go

@ -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)

Loading…
Cancel
Save