summaryrefslogtreecommitdiff
path: root/rows.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2020-03-29 18:44:24 +0800
committerxuri <xuri.me@gmail.com>2020-03-29 18:44:24 +0800
commit3f89c6e9799c9c82af1305f080416c53d19e64c1 (patch)
tree1c660c4ae8291e09cf71519b5e0c0ee69cb65cb0 /rows.go
parent6afc468a025984aa1b265b0228f032c5ed881a3b (diff)
remove ineffectual variable assignments and simplify code
Diffstat (limited to 'rows.go')
-rw-r--r--rows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rows.go b/rows.go
index e00a627..76dd0f0 100644
--- a/rows.go
+++ b/rows.go
@@ -174,7 +174,7 @@ func (f *File) Rows(sheet string) (*Rows, error) {
if f.Sheet[name] != nil {
// flush data
output, _ := xml.Marshal(f.Sheet[name])
- f.saveFileList(name, replaceWorkSheetsRelationshipsNameSpaceBytes(output))
+ f.saveFileList(name, replaceRelationshipsNameSpaceBytes(output))
}
var (
err error