diff --git a/src/cmd/patch.go b/src/cmd/patch.go index a6584c0..de0fb25 100644 --- a/src/cmd/patch.go +++ b/src/cmd/patch.go @@ -89,15 +89,12 @@ func WriteCommentsInFile( for (nextComment < commentsLength) && comments[nextComment].LineNum == lineNum { comment := comments[nextComment].Body fmt.Fprint(outputFile, comment) - fmt.Printf("L%04d:\n%s\n", comments[nextComment].LineNum, comment) nextComment++ } return nextComment } func ProcessFile(filepath string, comments []*gitea.PullReviewComment) { - fmt.Printf("FILE: %s\n", filepath) - core.BackUpSource(filepath) inputFile, err := os.Open(filepath + ".bck")