refactor: replace (*bytes.Buffer).WriteString with (*bytes.Buffer).Write

This PR change one method of bytes.Buffer struct package with a similar
one, as result - code produce less allocations on heap.
This commit is contained in:
Oleg Butuzov 2021-10-20 09:36:53 +03:00
parent 9535ab2987
commit 942c91b965
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ func (f *prettyFormatter) FormatAuthMethod(method *api.ACLAuthMethod) (string, e
if err != nil {
return "", fmt.Errorf("Error formatting auth method configuration: %s", err)
}
buffer.WriteString(string(output))
buffer.Write(output)
return buffer.String(), nil
}