Merge pull request #467 from bengadbois/small_code_cleanup

Small var declaration cleanup
This commit is contained in:
Stephen Day 2017-01-12 17:19:11 -08:00 committed by GitHub
commit 61e43dc76f
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ type TextFormatter struct {
func (f *TextFormatter) Format(entry *Entry) ([]byte, error) {
var b *bytes.Buffer
var keys []string = make([]string, 0, len(entry.Data))
keys := make([]string, 0, len(entry.Data))
for k := range entry.Data {
keys = append(keys, k)
}