Skip to content

Commit

Permalink
Remove errant fmt.Print()
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthHater committed Jun 11, 2020
1 parent 8d6b87d commit 6dc36df
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion parse/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ func parseSpaceSeparatedDependency(scanner *bufio.Scanner, deps *types.ProjectLi
s := strings.Split(text, " ")
if criteria(s) {
if len(s) > 3 {
fmt.Print(s)
deps.Projects = append(deps.Projects, types.Projects{Name: s[0], Version: s[4]})
} else {
deps.Projects = append(deps.Projects, types.Projects{Name: s[0], Version: s[1]})
Expand Down

0 comments on commit 6dc36df

Please sign in to comment.