diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-09-06 19:59:44 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-09-06 19:59:44 +0200 |
commit | 98a22e72a808aa0d5dd62339817404fd9e1c4db6 (patch) | |
tree | d5544dce0176b55172f2fd25564618e8c0f18558 /storage/filesystem/object.go | |
parent | ae2b10d50da5455b382ab9d543be4fe859afe9e0 (diff) | |
download | go-git-98a22e72a808aa0d5dd62339817404fd9e1c4db6.tar.gz |
format: packfile new interface (wip)
Diffstat (limited to 'storage/filesystem/object.go')
-rw-r--r-- | storage/filesystem/object.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/storage/filesystem/object.go b/storage/filesystem/object.go index c66e1ff..aef30ec 100644 --- a/storage/filesystem/object.go +++ b/storage/filesystem/object.go @@ -1,7 +1,6 @@ package filesystem import ( - "bytes" "fmt" "io" "os" @@ -34,8 +33,7 @@ func (s *ObjectStorage) NewObject() core.Object { // Writer method not supported on Memory storage func (o *ObjectStorage) Writer() (io.WriteCloser, error) { - file := bytes.NewBuffer(nil) - return newPackWrite(o, file), nil + return o.dir.NewObjectPack() } // Set adds a new object to the storage. As this functionality is not |