0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-11-11 04:21:21 +01:00
gitea/vendor/gopkg.in/src-d/go-git.v4/plumbing/object/common.go
2019-06-19 10:14:15 +08:00

12 lines
133 B
Go

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