From 38ad20efc11c1872c4e62a12617f0300c138b867 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Mon, 7 May 2018 16:12:51 +0800 Subject: save bytes on memory instead of string --- table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'table.go') diff --git a/table.go b/table.go index 5c00a2d..5af4b04 100644 --- a/table.go +++ b/table.go @@ -150,7 +150,7 @@ func (f *File) addTable(sheet, tableXML string, hxAxis, hyAxis, vxAxis, vyAxis, }, } table, _ := xml.Marshal(t) - f.saveFileList(tableXML, string(table)) + f.saveFileList(tableXML, table) } // parseAutoFilterSet provides function to parse the settings of the auto -- cgit v1.2.1