Merge pull request #86775 from Aresforchina/fix-staticcheck-test03

fix staticcheck of pkg/util/ebtables
This commit is contained in:
Kubernetes Prow Robot 2020-01-08 02:58:07 -08:00 committed by GitHub
commit 1f50be5d04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View File

@ -20,7 +20,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
}