mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 22:27:37 +03:00
Remove dead code paths
These paths were unreachable because XTransport.Get already checks the same conditions.
This commit is contained in:
parent
af0629856c
commit
03dea47130
1 changed files with 1 additions and 8 deletions
|
@ -1,7 +1,6 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
@ -95,13 +94,7 @@ func fetchWithCache(xTransport *XTransport, urlStr string, cacheFile string, ref
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
resp, _, err = xTransport.Get(url, "", 30*time.Second)
|
resp, _, err = xTransport.Get(url, "", 30*time.Second)
|
||||||
if err == nil && resp != nil && (resp.StatusCode < 200 || resp.StatusCode > 299) {
|
if err != nil {
|
||||||
err = fmt.Errorf("Webserver returned code %d", resp.StatusCode)
|
|
||||||
return
|
|
||||||
} else if err != nil {
|
|
||||||
return
|
|
||||||
} else if resp == nil {
|
|
||||||
err = errors.New("Webserver returned an error")
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
var bin []byte
|
var bin []byte
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue