mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-21 21:35:28 +02:00
Fix some Go Lint errors
This commit is contained in:
@@ -24,10 +24,13 @@ var bufferPool = &sync.Pool{
|
||||
},
|
||||
}
|
||||
|
||||
// GetBuffer returns a buffer from the pool.
|
||||
func GetBuffer() (buf *bytes.Buffer) {
|
||||
return bufferPool.Get().(*bytes.Buffer)
|
||||
}
|
||||
|
||||
// PutBuffer returns a buffer to the pool.
|
||||
// The buffer is reset before it is put back into circulation.
|
||||
func PutBuffer(buf *bytes.Buffer) {
|
||||
buf.Reset()
|
||||
bufferPool.Put(buf)
|
||||
|
Reference in New Issue
Block a user