1
1
mirror of https://github.com/go-gitea/gitea synced 2024-09-19 18:26:04 +00:00
gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object/common.go

13 lines
133 B
Go
Raw Normal View History

package object
import (
"bufio"
"sync"
)
var bufPool = sync.Pool{
New: func() interface{} {
return bufio.NewReader(nil)
},
}