diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2015-07-29 16:23:50 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2015-07-29 16:23:50 +0200 |
commit | c336d16298a017486c4164c40f8acb28afe64e84 (patch) | |
tree | df9b916867d4ef5db357b5635b0d18b7eb574497 | |
parent | 31eae7b619d166c366bf5df4991f04ba8cebea0a (diff) | |
download | go-git-c336d16298a017486c4164c40f8acb28afe64e84.tar.gz |
vcs: using github.com/klauspost/compress/zlib
-rw-r--r-- | packfile/reader.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packfile/reader.go b/packfile/reader.go index 1a445aa..73afdb9 100644 --- a/packfile/reader.go +++ b/packfile/reader.go @@ -2,10 +2,11 @@ package packfile import ( "bytes" - "compress/zlib" "encoding/binary" "fmt" "io" + + "github.com/klauspost/compress/zlib" ) const MaxObjectsLimit = 1000000 |