summaryrefslogtreecommitdiff
path: root/rows.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2021-09-26 00:07:40 +0800
committerxuri <xuri.me@gmail.com>2021-09-26 00:07:40 +0800
commit490f3063c2cb35a94d64f6a6859cce7b9dee276d (patch)
tree67b21487eabea5bff15fd1bcdc7db8e60996b452 /rows.go
parentc05b9fe8a6e6cadad0de7821bd33fa5cc283c8e4 (diff)
This closes #1026, time parse accuracy issue and typo fixed
Diffstat (limited to 'rows.go')
-rw-r--r--rows.go7
1 files changed, 0 insertions, 7 deletions
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
}
}