From a2abed442f1996fb7dd87fb030f8ba4e3de493f5 Mon Sep 17 00:00:00 2001 From: Justin SB Date: Thu, 30 May 2019 21:48:41 -0400 Subject: [PATCH] Remove unnecessary comment Copy-pasted accidentally in #76749 --- staging/src/k8s.io/legacy-cloud-providers/aws/tags.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/staging/src/k8s.io/legacy-cloud-providers/aws/tags.go b/staging/src/k8s.io/legacy-cloud-providers/aws/tags.go index 7e6ad916400..f2f74baf702 100644 --- a/staging/src/k8s.io/legacy-cloud-providers/aws/tags.go +++ b/staging/src/k8s.io/legacy-cloud-providers/aws/tags.go @@ -249,9 +249,6 @@ func (t *awsTagging) addFilters(filters []*ec2.Filter) []*ec2.Filter { } f := newEc2Filter("tag-key", t.clusterTagKey()) - - // We can't pass a zero-length Filters to AWS (it's an error) - // So if we end up with no filters; we need to return nil filters = append(filters, f) return filters }