diff options
author | xuri <xuri.me@gmail.com> | 2021-09-26 00:07:40 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-09-26 00:07:40 +0800 |
commit | 490f3063c2cb35a94d64f6a6859cce7b9dee276d (patch) | |
tree | 67b21487eabea5bff15fd1bcdc7db8e60996b452 /rows.go | |
parent | c05b9fe8a6e6cadad0de7821bd33fa5cc283c8e4 (diff) |
This closes #1026, time parse accuracy issue and typo fixed
Diffstat (limited to 'rows.go')
-rw-r--r-- | rows.go | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -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 } } |