Sfoglia il codice sorgente

remove debug print

Tao Wen 8 anni fa
parent
commit
17a26a6e20
1 ha cambiato i file con 0 aggiunte e 2 eliminazioni
  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
 }