From 853c4976cc1dc774f4653967e1ed9bae04ffbbb5 Mon Sep 17 00:00:00 2001 From: Zik <48577114+zikaeroh@users.noreply.github.com> Date: Mon, 10 Aug 2020 02:17:50 -0700 Subject: [PATCH] Remove spurious print (#300) --- gen/decoder.go | 1 - 1 file changed, 1 deletion(-) diff --git a/gen/decoder.go b/gen/decoder.go index 28759ff..0a0faa2 100644 --- a/gen/decoder.go +++ b/gen/decoder.go @@ -299,7 +299,6 @@ func (g *Generator) genTypeDecoderNoCheck(t reflect.Type, out string, tags field fmt.Fprintln(g.out, ws+"}") case reflect.Interface: - fmt.Printf("//%v: %v", out, g.interfaceIsEasyjsonUnmarshaller(t)) if t.NumMethod() != 0 { if g.interfaceIsEasyjsonUnmarshaller(t) { fmt.Fprintln(g.out, ws+out+".UnmarshalEasyJSON(in)")