From f4f700e74de89bb3b53654db0ab20add5fcfadbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Sedl=C3=A1=C4=8Dek?= Date: Wed, 21 Aug 2024 16:40:26 +0200 Subject: [PATCH] forgotten println (#6) --- formatter/processor.go | 1 - 1 file changed, 1 deletion(-) diff --git a/formatter/processor.go b/formatter/processor.go index 2d0d10d..c1b5181 100644 --- a/formatter/processor.go +++ b/formatter/processor.go @@ -129,7 +129,6 @@ func (f *form) formatLine(line string) (string, error) { errorEnding := reduceSpaces(strings.TrimSpace(partsLine[2])) partsEnd := strings.Split(strings.TrimSpace(strings.Split(errorEnding, "#")[0]), " ") - fmt.Println(partsEnd) if len(partsEnd) != 2 { return "", fmt.Errorf("wrong format of end of an error =(%s)", errorEnding) }