Merge pull request #15581 from JanetKuo/remove-sorting-printer-debug-message

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot 2015-10-14 09:02:32 -07:00
commit 11c735cefa

View File

@ -38,7 +38,6 @@ type SortingPrinter struct {
func (s *SortingPrinter) PrintObj(obj runtime.Object, out io.Writer) error {
if !runtime.IsListType(obj) {
fmt.Fprintf(out, "Not a list, skipping: %#v\n", obj)
return s.Delegate.PrintObj(obj, out)
}