mirror of
https://github.com/octoleo/restic.git
synced 2024-11-26 14:56:29 +00:00
Remove debug output
This commit is contained in:
parent
b2307cafa2
commit
f924dc1dc6
@ -6,8 +6,6 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/davecgh/go-spew/spew"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Pol is a polynomial from F_2[X].
|
// 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) {
|
func (p Pol) MarshalJSON() ([]byte, error) {
|
||||||
buf := strconv.AppendUint([]byte{'"'}, uint64(p), 16)
|
buf := strconv.AppendUint([]byte{'"'}, uint64(p), 16)
|
||||||
buf = append(buf, '"')
|
buf = append(buf, '"')
|
||||||
spew.Dump(buf)
|
|
||||||
return buf, nil
|
return buf, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user