remove the spew

This commit is contained in:
Lea Anthony
2020-11-09 22:06:55 +11:00
parent db38d13693
commit 5345c8dd0d

View File

@@ -3,7 +3,6 @@ package parser
import (
"go/token"
"github.com/davecgh/go-spew/spew"
"github.com/pkg/errors"
"golang.org/x/tools/go/packages"
)
@@ -57,8 +56,6 @@ func (p *Parser) ParseProject(dir string) error {
// We do this because some packages may have the same name
p.resolvePackageNames()
spew.Dump(p.packages)
return nil
}