fix staticcheck of pkg/util/ebtables

This commit is contained in:
Aresforchina 2020-01-02 18:01:29 +08:00
parent 36db62cd73
commit bfc4a7a1c5
2 changed files with 0 additions and 3 deletions

View File

@ -25,7 +25,6 @@ pkg/registry/core/service/ipallocator
pkg/registry/core/service/portallocator
pkg/registry/core/service/storage
pkg/util/coverage
pkg/util/ebtables
pkg/util/ipconfig
pkg/util/iptables
pkg/util/ipvs/testing

View File

@ -20,7 +20,6 @@ import (
"fmt"
"regexp"
"strings"
"sync"
utilexec "k8s.io/utils/exec"
)
@ -86,7 +85,6 @@ type Interface interface {
// runner implements Interface in terms of exec("ebtables").
type runner struct {
mu sync.Mutex
exec utilexec.Interface
}