diff options
Diffstat (limited to 'formats/idxfile/decoder.go')
-rw-r--r-- | formats/idxfile/decoder.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/formats/idxfile/decoder.go b/formats/idxfile/decoder.go index 617c0f4..57b508d 100644 --- a/formats/idxfile/decoder.go +++ b/formats/idxfile/decoder.go @@ -4,7 +4,6 @@ import ( "bytes" "encoding/binary" "errors" - "fmt" "io" "gopkg.in/src-d/go-git.v4/core" @@ -96,7 +95,6 @@ func readFanout(idx *Idxfile, r io.Reader) error { } idx.ObjectCount, err = readInt32(r) - fmt.Println(idx.ObjectCount) return err } |