Skip to content

Commit ffb862b

Browse files
findleyrgopherbot
authored andcommitted
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 <[email protected]> Auto-Submit: Robert Findley <[email protected]> Reviewed-by: Alan Donovan <[email protected]> Run-TryBot: Robert Findley <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent f87c1ed commit ffb862b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

gopls/internal/lsp/cache/standalone_go116.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
package cache
99

1010
import (
11-
"fmt"
1211
"go/build/constraint"
1312
"go/parser"
1413
"go/token"
@@ -35,7 +34,6 @@ func isStandaloneFile(src []byte, standaloneTags []string) bool {
3534
continue
3635
}
3736
for _, comment := range cg.List {
38-
fmt.Println(comment.Text)
3937
if c, err := constraint.Parse(comment.Text); err == nil {
4038
if tag, ok := c.(*constraint.TagExpr); ok {
4139
for _, t := range standaloneTags {

0 commit comments

Comments
 (0)