From 0a8b6f5474c4e5b00313b07b8761700bda2482d2 Mon Sep 17 00:00:00 2001 From: Matt Toohey Date: Fri, 28 Feb 2025 15:07:13 +1100 Subject: [PATCH] no print --- go-runtime/schema/metadata/analyzer.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/go-runtime/schema/metadata/analyzer.go b/go-runtime/schema/metadata/analyzer.go index 52caeab76e..088b44d4f0 100644 --- a/go-runtime/schema/metadata/analyzer.go +++ b/go-runtime/schema/metadata/analyzer.go @@ -1,7 +1,6 @@ package metadata import ( - "fmt" "go/ast" "go/token" "go/types" @@ -194,7 +193,6 @@ func extractMetadata(pass *analysis.Pass, node ast.Node, doc *ast.CommentGroup, func posFromPosWithinDirective(pos schema.Position, parentPos schema.Position) schema.Position { out := ireflect.DeepCopy(parentPos) out.Column += pos.Column - 1 - fmt.Printf("pos: %v\ntopicPos: %v\nfinal: %v\n", pos, parentPos, out) return out }