From 490f3063c2cb35a94d64f6a6859cce7b9dee276d Mon Sep 17 00:00:00 2001 From: xuri Date: Sun, 26 Sep 2021 00:07:40 +0800 Subject: This closes #1026, time parse accuracy issue and typo fixed --- rows.go | 7 ------- 1 file changed, 7 deletions(-) (limited to 'rows.go') diff --git a/rows.go b/rows.go index 5c7b22d..3d8c247 100644 --- a/rows.go +++ b/rows.go @@ -417,13 +417,6 @@ func (c *xlsxC) getValueFrom(f *File, d *xlsxSST, raw bool) (string, error) { } return f.formattedValue(c.S, c.V, raw), nil default: - isNum, precision := isNumeric(c.V) - if isNum && precision > 10 { - val, _ := roundPrecision(c.V) - if val != c.V { - return f.formattedValue(c.S, val, raw), nil - } - } return f.formattedValue(c.S, c.V, raw), nil } } -- cgit v1.2.1