diff options
author | Ri Xu <xuri.me@gmail.com> | 2016-09-05 10:44:32 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2016-09-05 10:44:32 +0800 |
commit | 956a4627d1f2b78172eaaf6078209d4cf8e64ce2 (patch) | |
tree | 4a5fea7d2cfd8d0a8c46cfc2ae711f1c8f309bcf /cell.go | |
parent | 9c3a24d5c369216ec5e1c292dd6547f7e263d23f (diff) |
Fix issue #4 use builtin `map` instead of home-built.
Diffstat (limited to 'cell.go')
-rw-r--r-- | cell.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ import ( ) // GetCellValue provide function get value from cell by given sheet index and axis in XLSX file -func GetCellValue(file []FileList, sheet string, axis string) string { +func GetCellValue(file map[string]string, sheet string, axis string) string { axis = strings.ToUpper(axis) var xlsx xlsxWorksheet row := getRowIndex(axis) |