From 59219f01bbf5f748876258fe5f4648d2cfd4d6e9 Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Fri, 9 Sep 2016 02:48:01 +0200 Subject: format: idxfile.Encoder fix fanout generator --- formats/idxfile/decoder.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'formats/idxfile/decoder.go') 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 } -- cgit