From da3540c0c134331c10f1a8d124ee0925e57f8112 Mon Sep 17 00:00:00 2001 From: oppiliappan Date: Mon, 1 Sep 2025 20:06:02 +0100 Subject: [PATCH] patchutil: do not print err TODO: this needs to be deprecated gracefully. Signed-off-by: oppiliappan --- patchutil/combinediff.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patchutil/combinediff.go b/patchutil/combinediff.go index 5637d7cd..3e9588fc 100644 --- a/patchutil/combinediff.go +++ b/patchutil/combinediff.go @@ -119,7 +119,7 @@ func combineTwo(patch1, patch2 []*gitdiff.File) []*gitdiff.File { // we have f1 and f2, combine them combined, err := combineFiles(f1, f2) if err != nil { - fmt.Println(err) + // fmt.Println(err) } // combined can be nil commit 2 reverted all changes from commit 1 -- 2.51.2