2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +00:00

Remove debug output

This commit is contained in:
Alexander Neumann 2015-04-06 00:26:58 +02:00
parent b2307cafa2
commit f924dc1dc6

View File

@ -6,8 +6,6 @@ import (
"errors"
"fmt"
"strconv"
"github.com/davecgh/go-spew/spew"
)
// Pol is a polynomial from F_2[X].
@ -261,7 +259,6 @@ func qp(p uint, g Pol) Pol {
func (p Pol) MarshalJSON() ([]byte, error) {
buf := strconv.AppendUint([]byte{'"'}, uint64(p), 16)
buf = append(buf, '"')
spew.Dump(buf)
return buf, nil
}