Remove unused code (fixed: unused, structcheck, deadcode linters)

This commit is contained in:
Mark Sagi-Kazar 2019-12-18 15:46:49 +01:00
parent e0f927c7a9
commit 8c3dc0ca66
No known key found for this signature in database
GPG key ID: 34CC109EB5ED1C2A
3 changed files with 0 additions and 17 deletions

View file

@ -16,10 +16,7 @@ linters:
- wsl - wsl
# TODO: fix me # TODO: fix me
- unused
- structcheck
- stylecheck - stylecheck
- deadcode
- misspell - misspell
- unparam - unparam
- goimports - goimports

View file

@ -105,7 +105,6 @@ type googleConnector struct {
redirectURI string redirectURI string
oauth2Config *oauth2.Config oauth2Config *oauth2.Config
verifier *oidc.IDTokenVerifier verifier *oidc.IDTokenVerifier
ctx context.Context
cancel context.CancelFunc cancel context.CancelFunc
logger log.Logger logger log.Logger
hostedDomains []string hostedDomains []string

View file

@ -47,19 +47,6 @@ type webConfig struct {
extra map[string]string extra map[string]string
} }
func join(base, path string) string {
b := strings.HasSuffix(base, "/")
p := strings.HasPrefix(path, "/")
switch {
case b && p:
return base + path[1:]
case b || p:
return base + path
default:
return base + "/" + path
}
}
func dirExists(dir string) error { func dirExists(dir string) error {
stat, err := os.Stat(dir) stat, err := os.Stat(dir)
if err != nil { if err != nil {