run gofmt on everything we touched

This commit is contained in:
Mike Danese
2015-08-05 15:05:17 -07:00
parent 62a4d5623c
commit 17defc7383
188 changed files with 280 additions and 280 deletions

View File

@@ -17,8 +17,8 @@ limitations under the License.
package cache
import (
"k8s.io/kubernetes/pkg/util"
"github.com/golang/glog"
"k8s.io/kubernetes/pkg/util"
"time"
)

View File

@@ -19,9 +19,9 @@ package cache
import (
"fmt"
"github.com/golang/glog"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/labels"
"github.com/golang/glog"
)
// TODO: generate these classes and methods for all resources of interest using

View File

@@ -19,8 +19,8 @@ package cache
import (
"time"
"k8s.io/kubernetes/pkg/util"
"github.com/golang/glog"
"k8s.io/kubernetes/pkg/util"
)
// Enumerator should be able to return the list of objects to be synced with

View File

@@ -29,12 +29,12 @@ import (
"syscall"
"time"
"github.com/golang/glog"
apierrs "k8s.io/kubernetes/pkg/api/errors"
"k8s.io/kubernetes/pkg/api/meta"
"k8s.io/kubernetes/pkg/runtime"
"k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/watch"
"github.com/golang/glog"
)
// ListerWatcher is any object that knows how to perform an initial list and start a watch on a resource.