We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f874b52 commit 9709da0Copy full SHA for 9709da0
scope.go
@@ -21,7 +21,6 @@
21
package tally
22
23
import (
24
- "fmt"
25
"io"
26
"sync"
27
"time"
@@ -575,7 +574,7 @@ func (s *scope) fullyQualifiedName(name string) string {
575
574
// output we're creating is a concatenation of the sanitized inputs.
576
// If we change the concatenation to involve other inputs or characters,
577
// we'll need to sanitize them too.
578
- return fmt.Sprintf("%s%s%s", s.prefix, s.separator, name)
+ return s.prefix + s.separator + name
579
}
580
581
func (s *scope) copyAndSanitizeMap(tags map[string]string) map[string]string {
0 commit comments