Skip to content

Commit

Permalink
fix: Remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
romshark committed Mar 17, 2024
1 parent 37e0558 commit 999d081
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions jscandec.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"encoding"
"encoding/json"
"errors"
"fmt"
"math"
"reflect"
"strconv"
Expand Down Expand Up @@ -1142,7 +1141,6 @@ func (d *Decoder[S, T]) Decode(s S, t *T, options *DecodeOptions) (err ErrorDeco

case ExpectTypeNumber:
tv := s[tokens[ti].Index+1 : tokens[ti].End-1]
fmt.Printf("FUCK: %q", string(tv))
if _, rc := jsonnum.ReadNumber(tv); rc == jsonnum.ReturnCodeErr {
err = ErrorDecode{
Err: ErrUnexpectedValue,
Expand Down

0 comments on commit 999d081

Please sign in to comment.