From d095ffed792f12f85c00f2e44926b4b6bf686c8b Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Tue, 30 Apr 2024 15:59:45 -0400 Subject: [PATCH] fix lint --- pkg/manifests/template/utils.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkg/manifests/template/utils.go b/pkg/manifests/template/utils.go index 69601781..6850cdda 100644 --- a/pkg/manifests/template/utils.go +++ b/pkg/manifests/template/utils.go @@ -33,15 +33,6 @@ func nindent(v string, spaces int) string { return "\n" + indent(v, spaces) } -func coalesce(v ...interface{}) interface{} { - for _, val := range v { - if !empty(val) { - return val - } - } - return nil -} - func ternary(v bool, vt interface{}, vf interface{}) interface{} { if v { return vt