Update golangci-lint

This commit is contained in:
9seconds
2019-01-24 08:15:56 +03:00
parent 16558a7c55
commit f68b195306
8 changed files with 14 additions and 30 deletions
+2 -4
View File
@@ -5,12 +5,10 @@ import (
"sync"
)
var streamCipherBufferPool sync.Pool
func init() {
var (
streamCipherBufferPool = sync.Pool{
New: func() interface{} {
return &bytes.Buffer{}
},
}
}
)