aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--asspb.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/asspb.go b/asspb.go
index 9f2c506..488c731 100644
--- a/asspb.go
+++ b/asspb.go
@@ -301,11 +301,9 @@ func Unmarshal(data []byte, v any) error {
if err != nil {
return err
}
- fmt.Printf("%s: %v\n", data, m)
jsonBytes, err := json.Marshal(m)
if err != nil {
return err
}
- fmt.Printf("%s: %s\n", data, jsonBytes)
return json.Unmarshal(jsonBytes, v)
}