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

@ -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
}