Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed goimports nits #3825

Merged
merged 1 commit into from
Jan 27, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions pkg/kubectl/sorted_event_list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ limitations under the License.
package kubectl

import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"sort"
"strings"
"testing"
"time"

"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
)

// VerifyDatesInOrder checks the start of each line for a RFC1123Z date
Expand Down
3 changes: 2 additions & 1 deletion pkg/proxy/loadbalancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ limitations under the License.
package proxy

import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"net"

"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
)

// LoadBalancer is an interface for distributing incoming requests to service endpoints.
Expand Down
2 changes: 0 additions & 2 deletions pkg/runtime/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ limitations under the License.

package runtime

import ()

// Note that the types provided in this file are not versioned and are intended to be
// safe to use from within all versions of every API object.

Expand Down
2 changes: 0 additions & 2 deletions pkg/util/string_flag.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ limitations under the License.

package util

import ()

// StringFlag is a string flag compatible with flags and pflags that keeps track of whether it had a value supplied or not.
type StringFlag struct {
// If Set has been invoked this value is true
Expand Down