Commit 11c735ce authored by k8s-merge-robot's avatar k8s-merge-robot

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

Auto commit by PR queue bot
parents 6a4b76f3 d7d24dc8
...@@ -38,7 +38,6 @@ type SortingPrinter struct { ...@@ -38,7 +38,6 @@ type SortingPrinter struct {
func (s *SortingPrinter) PrintObj(obj runtime.Object, out io.Writer) error { func (s *SortingPrinter) PrintObj(obj runtime.Object, out io.Writer) error {
if !runtime.IsListType(obj) { if !runtime.IsListType(obj) {
fmt.Fprintf(out, "Not a list, skipping: %#v\n", obj)
return s.Delegate.PrintObj(obj, out) return s.Delegate.PrintObj(obj, out)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment