Skip to content

Commit

Permalink
fix: fixed a bug where testing mode and lessCpuTime will always be true
Browse files Browse the repository at this point in the history
  • Loading branch information
tarithj committed Feb 2, 2021
1 parent 6324a7a commit de50234
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/oDrop/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ func main() {
var file string
var n int

var useLessCpuTimeExtractor = flag.Bool("lessCpuTime", true, "uses less cpu time whenever possible")
var testingMode = flag.Bool("testingMode", true, "enables testing mode")
var useLessCpuTimeExtractor = flag.Bool("lessCpuTime", false, "uses less cpu time whenever possible")
var testingMode = flag.Bool("testingMode", false, "enables testing mode")
mode, file, n = PromptUser()
flag.Parse()

Expand Down

0 comments on commit de50234

Please sign in to comment.