From ffb862b5444512cfc8c66d91cbf7d22d301f0bfd Mon Sep 17 00:00:00 2001 From: Robert Findley Date: Thu, 13 Oct 2022 13:28:18 -0400 Subject: [PATCH] gopls/internal/lsp/cache: remove stray print statement A stray print statement was accidentally left in CL 441877. Remove it. Change-Id: I44e4408059f30d35ad8c84b070aea3e197762d1c Reviewed-on: https://go-review.googlesource.com/c/tools/+/442782 gopls-CI: kokoro Auto-Submit: Robert Findley Reviewed-by: Alan Donovan Run-TryBot: Robert Findley TryBot-Result: Gopher Robot --- gopls/internal/lsp/cache/standalone_go116.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/gopls/internal/lsp/cache/standalone_go116.go b/gopls/internal/lsp/cache/standalone_go116.go index 39e8864bb8..2f72d5f549 100644 --- a/gopls/internal/lsp/cache/standalone_go116.go +++ b/gopls/internal/lsp/cache/standalone_go116.go @@ -8,7 +8,6 @@ package cache import ( - "fmt" "go/build/constraint" "go/parser" "go/token" @@ -35,7 +34,6 @@ func isStandaloneFile(src []byte, standaloneTags []string) bool { continue } for _, comment := range cg.List { - fmt.Println(comment.Text) if c, err := constraint.Parse(comment.Text); err == nil { if tag, ok := c.(*constraint.TagExpr); ok { for _, t := range standaloneTags {