1
0
mirror of https://github.com/json-iterator/go.git synced 2025-04-04 21:34:16 +02:00

remove debug print

This commit is contained in:
Tao Wen 2017-07-18 23:24:21 +08:00
parent 156284b028
commit 17a26a6e20

View File

@ -1,7 +1,6 @@
package jsoniter
import (
"fmt"
"io"
"math/big"
"strconv"
@ -329,6 +328,5 @@ func (iter *Iterator) readFloat64SlowPath() (ret float64) {
iter.Error = err
return
}
fmt.Println(str)
return val
}