mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Remove unused code
As far as I see, it's a dead code. Signed-off-by: Hu Keping <hukeping@huawei.com>
This commit is contained in:
parent
23e8dff9e7
commit
a34cb32186
1 changed files with 0 additions and 21 deletions
|
@ -7,7 +7,6 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
|
@ -275,26 +274,6 @@ type FileServer struct {
|
||||||
*httptest.Server
|
*httptest.Server
|
||||||
}
|
}
|
||||||
|
|
||||||
func fileServer(files map[string]string) (*FileServer, error) {
|
|
||||||
var handler http.HandlerFunc = func(w http.ResponseWriter, r *http.Request) {
|
|
||||||
if filePath, found := files[r.URL.Path]; found {
|
|
||||||
http.ServeFile(w, r, filePath)
|
|
||||||
} else {
|
|
||||||
http.Error(w, http.StatusText(404), 404)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, file := range files {
|
|
||||||
if _, err := os.Stat(file); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
server := httptest.NewServer(handler)
|
|
||||||
return &FileServer{
|
|
||||||
Server: server,
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// randomUnixTmpDirPath provides a temporary unix path with rand string appended.
|
// randomUnixTmpDirPath provides a temporary unix path with rand string appended.
|
||||||
// does not create or checks if it exists.
|
// does not create or checks if it exists.
|
||||||
func randomUnixTmpDirPath(s string) string {
|
func randomUnixTmpDirPath(s string) string {
|
||||||
|
|
Loading…
Add table
Reference in a new issue