From 7206b510f96a8756e689581ecb7701d16d259c5f Mon Sep 17 00:00:00 2001 From: James Payne Date: Sat, 19 Apr 2025 18:35:19 +0100 Subject: [PATCH] Remove function which is no longer used Signed-off-by: James Payne --- pkg/chart/v2/util/coalesce.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/chart/v2/util/coalesce.go b/pkg/chart/v2/util/coalesce.go index d650ca7b4..b287b8324 100644 --- a/pkg/chart/v2/util/coalesce.go +++ b/pkg/chart/v2/util/coalesce.go @@ -87,8 +87,6 @@ func copyValues(vals map[string]interface{}) (Values, error) { return valsCopy, nil } -type printFn func(format string, v ...interface{}) - // coalesce coalesces the dest values and the chart values, giving priority to the dest values. // // This is a helper function for CoalesceValues and MergeValues.