Remove fmt.Println

This commit is contained in:
Bruce Marriner 2016-06-01 15:51:35 -05:00
parent 8f788319b3
commit 9d4cff4177

View File

@ -140,7 +140,6 @@ func (f *ID) UnmarshalJSON(b []byte) error {
s := strings.Replace(string(b), `"`, ``, 2)
i, err := strconv.ParseInt(s, 10, 64)
if err != nil {
fmt.Println(err)
return err
}