From fa28ee868319efa39129ac4a967931cb36a78357 Mon Sep 17 00:00:00 2001 From: Morgan Bauer Date: Tue, 20 Sep 2016 00:13:16 +0000 Subject: [PATCH] delete private interface with no references in package --- pkg/kubectl/apply.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/kubectl/apply.go b/pkg/kubectl/apply.go index 6f183f1c0d6..de5e5acd99a 100644 --- a/pkg/kubectl/apply.go +++ b/pkg/kubectl/apply.go @@ -25,10 +25,6 @@ import ( "k8s.io/kubernetes/pkg/runtime" ) -type debugError interface { - DebugError() (msg string, args []interface{}) -} - // GetOriginalConfiguration retrieves the original configuration of the object // from the annotation, or nil if no annotation was found. func GetOriginalConfiguration(mapping *meta.RESTMapping, obj runtime.Object) ([]byte, error) {