Skip to content

Commit

Permalink
Removed max go procs as it is the default after go 1.5 anyways
Browse files Browse the repository at this point in the history
  • Loading branch information
sanbornm committed Sep 11, 2015
1 parent 2e9e3c6 commit e0faeae
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import (
"go/format"
"log"
"os"
"runtime"

gen "github.com/sanbornm/gowsdl/generator"
)
Expand All @@ -22,10 +21,6 @@ var pkg = flag.String("p", "myservice", "Package under which code will be genera
var outFile = flag.String("o", "myservice.go", "File where the generated code will be saved")

func init() {
if os.Getenv("GOMAXPROCS") == "" {
runtime.GOMAXPROCS(runtime.NumCPU())
}

log.SetFlags(0)
log.SetOutput(os.Stdout)
log.SetPrefix("🍀 ")
Expand Down

0 comments on commit e0faeae

Please sign in to comment.