Skip to content

Commit

Permalink
Fix lint errors and warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejoh committed Nov 22, 2022
1 parent 7514161 commit 1e9ebfa
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions source/f5_virtualserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import (
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/kubernetes/scheme"
"k8s.io/client-go/tools/cache"

"sigs.k8s.io/external-dns/endpoint"
)

Expand Down Expand Up @@ -180,7 +181,6 @@ func (vs *f5VirtualServerSource) endpointsFromVirtualServers(virtualServers []*V
endpoints = append(endpoints, ep)
continue
}

}

return endpoints, nil
Expand Down Expand Up @@ -321,7 +321,6 @@ func (in *VirtualServer) DeepCopyInto(out *VirtualServer) {
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
in.Spec.DeepCopyInto(&out.Spec)
out.Status = in.Status
return
}

// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VirtualServer.
Expand Down Expand Up @@ -354,7 +353,6 @@ func (in *VirtualServerList) DeepCopyInto(out *VirtualServerList) {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
return
}

// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VirtualServerList.
Expand Down Expand Up @@ -398,7 +396,6 @@ func (in *VirtualServerSpec) DeepCopyInto(out *VirtualServerSpec) {
*out = make([]ServiceAddress, len(*in))
copy(*out, *in)
}
return
}

// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VirtualServerSpec.
Expand All @@ -414,7 +411,6 @@ func (in *VirtualServerSpec) DeepCopy() *VirtualServerSpec {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *VirtualServerStatus) DeepCopyInto(out *VirtualServerStatus) {
*out = *in
return
}

// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VirtualServerStatus.
Expand Down

0 comments on commit 1e9ebfa

Please sign in to comment.