Explorar el Código

remove debug print

Tao Wen hace 8 años
padre
commit
17a26a6e20
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  1. 0 2
      feature_iter_float.go

+ 0 - 2
feature_iter_float.go

@@ -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
 }