From c80cb7dee92cb89043bff43a682130f0d2246dd0 Mon Sep 17 00:00:00 2001 From: Thomas Shafer Date: Fri, 5 Apr 2019 11:01:57 -0700 Subject: [PATCH] Remove unused receiver name (#366) --- apis/duck/v1beta1/status_types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apis/duck/v1beta1/status_types.go b/apis/duck/v1beta1/status_types.go index 476724b2c..d487991ca 100644 --- a/apis/duck/v1beta1/status_types.go +++ b/apis/duck/v1beta1/status_types.go @@ -110,7 +110,7 @@ func (t *KResource) Populate() { } // GetListType implements apis.Listable -func (r *KResource) GetListType() runtime.Object { +func (*KResource) GetListType() runtime.Object { return &KResourceList{} }