mirror of https://github.com/golang/go.git
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 <noreply+kokoro@google.com> Auto-Submit: Robert Findley <rfindley@google.com> Reviewed-by: Alan Donovan <adonovan@google.com> Run-TryBot: Robert Findley <rfindley@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
parent
f87c1ed972
commit
ffb862b544
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue