1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-18 14:47:03 +00:00

Avoid unnecessary calls to fmt.Sprintf

The linter caught some unnecessary calls to fmt.Sprintf. This patch
removes them.

There are no functional changes.
This commit is contained in:
Alberto Bertogli
2020-04-13 13:58:31 +01:00
parent d6b512166b
commit 25ebc4f2e2
3 changed files with 5 additions and 5 deletions

View File

@@ -232,7 +232,7 @@ func (q *Queue) Remove(id string) {
func (q *Queue) DumpString() string {
q.mu.RLock()
defer q.mu.RUnlock()
s := fmt.Sprintf("# Queue status\n\n")
s := "# Queue status\n\n"
s += fmt.Sprintf("date: %v\n", time.Now())
s += fmt.Sprintf("length: %d\n\n", len(q.q))
@@ -248,7 +248,7 @@ func (q *Queue) DumpString() string {
s += fmt.Sprintf(" last failure: %q\n", rcpt.LastFailureMessage)
}
item.Unlock()
s += fmt.Sprintf("\n")
s += "\n"
}
return s