mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-11-07 11:26:21 +03:00
switch to fork of go-git
This commit is contained in:
12
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/common.go
generated
vendored
Normal file
12
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/common.go
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
package object
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
"sync"
|
||||
)
|
||||
|
||||
var bufPool = sync.Pool{
|
||||
New: func() interface{} {
|
||||
return bufio.NewReader(nil)
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user