fix non-gofmt'd things

This commit is contained in:
Daniel Smith
2014-09-24 14:27:10 -07:00
parent 50eb2cf59c
commit bb0cd95a83
11 changed files with 147 additions and 147 deletions

View File

@@ -18,10 +18,10 @@ package kubelet
import (
"fmt"
"net"
"strconv"
"net/http"
"io"
"net"
"net/http"
"strconv"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
@@ -101,7 +101,7 @@ func (h *httpActionHandler) Run(podFullName, uuid string, container *api.Contain
// FlushWriter provides wrapper for responseWriter with HTTP streaming capabilities
type FlushWriter struct {
flusher http.Flusher
writer io.Writer
writer io.Writer
}
// Write is a FlushWriter implementation of the io.Writer that sends any buffered data to the client.