Merge pull request #3480 from tianon/gofmt

Run 'gofmt -s -w'
This commit is contained in:
Michael Crosby 2014-01-07 06:41:23 -08:00
commit 1f9abfe841
6 changed files with 8 additions and 9 deletions

View File

@ -1,8 +1,8 @@
package engine
import (
"path"
"net/http"
"path"
)
// ServeHTTP executes a job as specified by the http request `r`, and sends the
@ -22,7 +22,7 @@ func (eng *Engine) ServeHTTP(w http.ResponseWriter, r *http.Request) {
jobArgs = []string{}
}
w.Header().Set("Job-Name", jobName)
for _, arg := range(jobArgs) {
for _, arg := range jobArgs {
w.Header().Add("Job-Args", arg)
}
job := eng.Job(jobName, jobArgs...)

View File

@ -1,8 +1,8 @@
package docker
import (
"os"
"io"
"os"
)
func CopyFile(dstFile, srcFile *os.File) error {

View File

@ -25,8 +25,8 @@ btrfs_reflink(int fd_out, int fd_in)
import "C"
import (
"os"
"io"
"os"
"syscall"
)

View File

@ -322,7 +322,6 @@ func migratePortMappings(config *Config, hostConfig *HostConfig) error {
return nil
}
// Links come in the format of
// name:alias
func parseLink(rawLink string) (map[string]string, error) {