diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-06-29 13:28:44 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-06-29 13:28:44 +0800 |
commit | e05867a033cabfa100e7c2b284e1f85fd4769c3c (patch) | |
tree | 2820695a09103d12d22dc75cebb8a06632f7519f /styles.go | |
parent | 86466654e270786428540e34fd0a61e7d537a99c (diff) |
Function `GetCellValue()` performance improvement by avoid repeating deserialization, relate issue #70.
Diffstat (limited to 'styles.go')
-rw-r--r-- | styles.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -225,7 +225,7 @@ func parseTime(i int, v string) string { } // stylesReader provides function to get the pointer to the structure after -// deserialization of workbook. +// deserialization of xl/styles.xml. func (f *File) stylesReader() *xlsxStyleSheet { if f.Styles == nil { var styleSheet xlsxStyleSheet |