Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 3097c00

Browse files
authored
Merge pull request #600 from jmank88/solver_unused_var
remove unused global vars
2 parents a229d99 + 9d2b9cf commit 3097c00

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

internal/gps/solver.go

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,6 @@ import (
1616
"github.com/golang/dep/internal/gps/pkgtree"
1717
)
1818

19-
var (
20-
osList []string
21-
archList []string
22-
ignoreTags = []string{} //[]string{"appengine", "ignore"} //TODO: appengine is a special case for now: https://github.com/tools/godep/issues/353
23-
)
24-
25-
func init() {
26-
// The supported systems are listed in
27-
// https://github.com/golang/go/blob/master/src/go/build/syslist.go
28-
// The lists are not exported, so we need to duplicate them here.
29-
osListString := "android darwin dragonfly freebsd linux nacl netbsd openbsd plan9 solaris windows"
30-
osList = strings.Split(osListString, " ")
31-
32-
archListString := "386 amd64 amd64p32 arm armbe arm64 arm64be ppc64 ppc64le mips mipsle mips64 mips64le mips64p32 mips64p32le ppc s390 s390x sparc sparc64"
33-
archList = strings.Split(archListString, " ")
34-
}
35-
3619
var rootRev = Revision("")
3720

3821
// SolveParameters hold all arguments to a solver run.

0 commit comments

Comments
 (0)