From f924dc1dc62862a0c6d0a387757d178f2e87ea7e Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Mon, 6 Apr 2015 00:26:58 +0200 Subject: [PATCH] Remove debug output --- chunker/polynomials.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/chunker/polynomials.go b/chunker/polynomials.go index 65fe1e931..6a0caef86 100644 --- a/chunker/polynomials.go +++ b/chunker/polynomials.go @@ -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 }