From 3240d4141e0a5a2cec2b82904d4f2a6990e3232f Mon Sep 17 00:00:00 2001 From: koki-develop Date: Wed, 6 Mar 2024 16:55:23 +0900 Subject: [PATCH] Remove debug print statement in stringifyVarSpecs --- internal/mingo/decl.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/mingo/decl.go b/internal/mingo/decl.go index 9eac5ef..eb0dbe8 100644 --- a/internal/mingo/decl.go +++ b/internal/mingo/decl.go @@ -132,8 +132,6 @@ func (m *mingo) stringifyVarSpecs(specs []*ast.ValueSpec) string { } for i, spec := range specs { - fmt.Printf("comment: %#v\n", spec.Comment) - if i > 0 { sb.WriteString(";") }