DEBSOURCES
Skip Quicknav
sources / golang-github-go-git-go-git / 5.4.2-3 / plumbing / object / common.go
123456789101112
package object import ( "bufio" "sync" ) var bufPool = sync.Pool{ New: func() interface{} { return bufio.NewReader(nil) }, }