summaryrefslogtreecommitdiff
path: root/rows.go
diff options
context:
space:
mode:
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
}
}