Remove an obsolete TODO comment

This comment belonged to a switch-statement that
has since been removed, but it was forgotten to
remove the corresponding comment.
This commit is contained in:
Jan Sandbrink 2022-02-09 09:21:41 +01:00
parent 261bcadd7c
commit 78fe201d1c

View File

@ -314,9 +314,6 @@ func (p *AWSProvider) records(ctx context.Context, zones map[string]*route53.Hos
for _, r := range resp.ResourceRecordSets { for _, r := range resp.ResourceRecordSets {
newEndpoints := make([]*endpoint.Endpoint, 0) newEndpoints := make([]*endpoint.Endpoint, 0)
// TODO(linki, ownership): Remove once ownership system is in place.
// See: https://github.com/kubernetes-sigs/external-dns/pull/122/files/74e2c3d3e237411e619aefc5aab694742001cdec#r109863370
if !provider.SupportedRecordType(aws.StringValue(r.Type)) { if !provider.SupportedRecordType(aws.StringValue(r.Type)) {
continue continue
} }