Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Apr 30, 2024
1 parent 6f4af86 commit d095ffe
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions pkg/manifests/template/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d095ffe

Please sign in to comment.