Skip to content

Commit

Permalink
Remove unused func in utils
Browse files Browse the repository at this point in the history
  • Loading branch information
zachhuff386 committed Nov 10, 2018
1 parent 50701a7 commit 528d4ab
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions service/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -836,16 +836,6 @@ func GetPidPath() (pth string) {
return
}

func GetWinArch() (arch string) {
if os.Getenv("PROGRAMFILES(X86)") == "" {
arch = "32"
} else {
arch = "64"
}

return
}

func PidInit() (err error) {
if runtime.GOOS == "windows" {
return
Expand Down

0 comments on commit 528d4ab

Please sign in to comment.