diff options
| author | xuri <xuri.me@gmail.com> | 2020-08-16 03:48:11 +0000 |
|---|---|---|
| committer | xuri <xuri.me@gmail.com> | 2020-08-16 03:48:11 +0000 |
| commit | 4e4baac3bc1cd11026a35fb59b6a0d7903a44070 (patch) | |
| tree | 0ae22916da589c80bcd16e834909e861354290bc /xmlWorksheet.go | |
| parent | bc704c854f270f5b53eaa6980c76950ad86410c7 (diff) | |
using Mutex lock and update benchmark
Diffstat (limited to 'xmlWorksheet.go')
| -rw-r--r-- | xmlWorksheet.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index 2b39e64..bc81b03 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -19,7 +19,7 @@ import ( // xlsxWorksheet directly maps the worksheet element in the namespace // http://schemas.openxmlformats.org/spreadsheetml/2006/main. type xlsxWorksheet struct { - sync.RWMutex + sync.Mutex XMLName xml.Name `xml:"http://schemas.openxmlformats.org/spreadsheetml/2006/main worksheet"` SheetPr *xlsxSheetPr `xml:"sheetPr"` Dimension *xlsxDimension `xml:"dimension"` |
