No need in strconv now.

This commit is contained in:
Stanislav Nikitin 2016-10-06 16:33:12 +05:00
parent 99435a769f
commit 9ce4ad8945
2 changed files with 1 additions and 2 deletions

View File

@ -33,7 +33,7 @@ type Pooler struct {
func (p *Pooler) Initialize() {
fmt.Println("Initializing requester goroutine pooler...")
p.maxrequests = runtime.NumCPU() * 2
p.maxrequests = runtime.NumCPU() * 4
p.pp = "\377\377\377\377"
}

View File

@ -12,7 +12,6 @@ package ui
import (
// stdlib
"fmt"
"strconv"
// Local
"github.com/pztrn/urtrator/datamodels"