From 991d51b03e5b63bc119848918f38f6d3c65f5660 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Thu, 23 Feb 2023 16:31:31 +0100 Subject: [PATCH] fix: remove dead code (#6380) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Charles-Edouard Brétéché --- pkg/config/config.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index 8d95a1654c..9464e420ff 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -145,8 +145,6 @@ type Configuration interface { GetExcludedUsernames() []string // GetGenerateSuccessEvents return if should generate success events GetGenerateSuccessEvents() bool - // FilterNamespaces filters exclude namespace - FilterNamespaces(namespaces []string) []string // GetWebhooks returns the webhook configs GetWebhooks() []WebhookConfig // Load loads configuration from a configmap @@ -235,16 +233,6 @@ func (cd *configuration) GetGenerateSuccessEvents() bool { return cd.generateSuccessEvents } -func (cd *configuration) FilterNamespaces(namespaces []string) []string { - var results []string - for _, ns := range namespaces { - if !cd.ToFilter("", ns, "") { - results = append(results, ns) - } - } - return results -} - func (cd *configuration) GetWebhooks() []WebhookConfig { cd.mux.RLock() defer cd.mux.RUnlock()