aboutsummaryrefslogtreecommitdiffstats
path: root/formats/idxfile/decoder.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-09-09 02:48:01 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2016-09-09 02:48:01 +0200
commit59219f01bbf5f748876258fe5f4648d2cfd4d6e9 (patch)
treeec225373a7cef5187a26666ff0e2607539a050cd /formats/idxfile/decoder.go
parent3b1baea2dd9353f42b3a9d93f6bc92ecbe9f4f01 (diff)
downloadgo-git-59219f01bbf5f748876258fe5f4648d2cfd4d6e9.tar.gz
format: idxfile.Encoder fix fanout generator
Diffstat (limited to 'formats/idxfile/decoder.go')
-rw-r--r--formats/idxfile/decoder.go2
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
}