Browse Source

Merge pull request #11358 from butuzov/refactor-strings

refactor: replace `(*bytes.Buffer).WriteString` with `(*bytes.Buffer).Write`
pull/11316/head
Daniel Nephin 3 years ago committed by GitHub
parent
commit
8dbeebb031
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      command/acl/authmethod/formatter.go

2
command/acl/authmethod/formatter.go

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

Loading…
Cancel
Save