Skip to content

Commit

Permalink
Remove fmt calls
Browse files Browse the repository at this point in the history
  • Loading branch information
bengsparks committed Aug 14, 2021
1 parent de39a5a commit 0bf4a48
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions matchers/nim/todomatcher.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package nim

import (
"fmt"
"regexp"

"github.com/preslavmihaylov/todocheck/common"
Expand All @@ -20,11 +19,6 @@ func NewTodoMatcher(todos []string) *TodoMatcher {
multiLineTodoPattern := regexp.MustCompile(`(?s)^\s*(#\[).*` + pattern)
multiLineValidTodoPattern := regexp.MustCompile(`(?s)^\s*(#\[).*` + pattern + ` (#?[a-zA-Z0-9\-]+):.*`)

fmt.Println(singleLineTodoPattern)
fmt.Println(singleLineValidTodoPattern)
fmt.Println(multiLineTodoPattern)
fmt.Println(multiLineValidTodoPattern)

return &TodoMatcher{
singleLineTodoPattern: singleLineTodoPattern,
singleLineValidTodoPattern: singleLineValidTodoPattern,
Expand Down
1 change: 0 additions & 1 deletion testing/scenariobuilder/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ func (s *TodocheckScenario) Run() error {
return fmt.Errorf("couldn't initialize todocheck config: %w", err)
}

fmt.Println(s.binaryLoc, "--basepath", s.basepath, "--config", s.cfgPath)
cmd := exec.Command(s.binaryLoc, "--basepath", s.basepath, "--config", s.cfgPath)
if s.versionFlagRequested {
cmd.Args = append(cmd.Args, "--version")
Expand Down

0 comments on commit 0bf4a48

Please sign in to comment.