update lock && normal

This commit is contained in:
白茶清欢 2023-12-24 22:51:41 +08:00
parent 1e39d020ed
commit 489e31b07a
2 changed files with 5 additions and 3 deletions

View File

@ -35,7 +35,9 @@ type common struct {
//
// Date : 21:25 2023/12/24
func (c *common) initLock() {
c.lock = &sync.RWMutex{}
if c.dataTableType == normalDataTableType {
c.lock = &sync.RWMutex{}
}
}
// Lock ...

View File

@ -12,7 +12,7 @@ package easymap
// Author : go_developer@163.com<白茶清欢>
//
// Date : 10:07 下午 2021/2/23
func NewNormal(withLock bool) EasyMap {
em, _ := NewSegment(1, withLock)
func NewNormal() EasyMap {
em, _ := NewSegment(1)
return em
}