remove unused and rename

master
Bel LaPointe 2019-11-03 07:56:43 -07:00
parent 01b7b06971
commit d98703610d
2 changed files with 1 additions and 5 deletions

View File

@ -7,8 +7,7 @@ import (
) )
type Proxy struct { type Proxy struct {
To string To string
BOAuthZ bool
} }
func parseProxy(s string) (string, Proxy) { func parseProxy(s string) (string, Proxy) {
@ -21,9 +20,6 @@ func parseProxy(s string) (string, Proxy) {
if len(l) > 1 { if len(l) > 1 {
p.To = l[1] p.To = l[1]
} }
if len(l) > 2 {
p.BOAuthZ = l[2] == "true"
}
return key, p return key, p
} }