From 342fed7d4b2c77a1596fd65f10fe34020b218549 Mon Sep 17 00:00:00 2001 From: Roman Yarmolenko Date: Thu, 17 Dec 2020 18:17:32 +0200 Subject: [PATCH] Remove excess print --- xls/record/format.go | 1 - 1 file changed, 1 deletion(-) diff --git a/xls/record/format.go b/xls/record/format.go index 1576262..fe1ad8f 100644 --- a/xls/record/format.go +++ b/xls/record/format.go @@ -106,7 +106,6 @@ func (r *Format) GetFormatString(data structure.CellData) string { } else if strings.Contains(r.String(), "0") { return fmt.Sprintf("%.f", data.GetFloat64()) } else { - fmt.Println(r.String()) t := helpers.TimeFromExcelTime(data.GetFloat64(), false) dateFormat := strings.ReplaceAll(r.String(), "HH:MM:SS", "hh:mm:ss") dateFormat = strings.ReplaceAll(dateFormat, "\\", "")