hashicorp / go-plugin

Golang plugin system over RPC.
Mozilla Public License 2.0
5.25k stars 450 forks source link

Simplify string to int. #129

Closed d-kuro closed 4 years ago

d-kuro commented 4 years ago

It is simpler to use strconv.Atoi(s) than strconv.ParseInt(s, 10, 0) https://golang.org/pkg/strconv/#Atoi

hashicorp-cla commented 4 years ago

CLA assistant check
All committers have signed the CLA.

mitchellh commented 4 years ago

Thanks this seems safe and the tests pass which do exercise this.