Remove whitespaces

This commit is contained in:
megum1n 2023-04-20 15:50:58 +02:00
parent ac605fa4ce
commit 63c826f62b
No known key found for this signature in database
GPG Key ID: 2604BA0B7D864F76

View File

@ -86,7 +86,6 @@ type glooSource struct {
// NewGlooSource creates a new glooSource with the given config // NewGlooSource creates a new glooSource with the given config
func NewGlooSource(dynamicKubeClient dynamic.Interface, kubeClient kubernetes.Interface, glooNamespaces string) (Source, error) { func NewGlooSource(dynamicKubeClient dynamic.Interface, kubeClient kubernetes.Interface, glooNamespaces string) (Source, error) {
return &glooSource{ return &glooSource{
dynamicKubeClient, dynamicKubeClient,
kubeClient, kubeClient,
@ -130,7 +129,6 @@ func (gs *glooSource) Endpoints(ctx context.Context) ([]*endpoint.Endpoint, erro
endpoints = append(endpoints, proxyEndpoints...) endpoints = append(endpoints, proxyEndpoints...)
} }
} }
return endpoints, nil return endpoints, nil
} }