summaryrefslogtreecommitdiff
path: root/cell.go
diff options
context:
space:
mode:
Diffstat (limited to 'cell.go')
-rw-r--r--cell.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/cell.go b/cell.go
index 0912dc4..fb0a833 100644
--- a/cell.go
+++ b/cell.go
@@ -41,9 +41,6 @@ var rwMutex sync.RWMutex
func (f *File) GetCellValue(sheet, axis string) (string, error) {
return f.getCellStringFunc(sheet, axis, func(x *xlsxWorksheet, c *xlsxC) (string, bool, error) {
val, err := c.getValueFrom(f, f.sharedStringsReader())
- if err != nil {
- return val, false, err
- }
return val, true, err
})
}