Skip to content

Commit 43990a8

Browse files
committed
move mutex to global level
1 parent ada37fd commit 43990a8

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

modeldb/modeldb.go

-6
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ package modeldb
1818
// Wrapper for persistently storing object model
1919

2020
import (
21-
"sync"
22-
2321
"github.com/contiv/objdb"
2422

2523
log "github.com/Sirupsen/logrus"
@@ -37,14 +35,10 @@ type ModelObj interface {
3735
type Link struct {
3836
ObjType string `json:"type,omitempty"`
3937
ObjKey string `json:"key,omitempty"`
40-
41-
mutex sync.Mutex
4238
}
4339

4440
// AddLink adds a one way link to target object
4541
func AddLink(link *Link, obj ModelObj) {
46-
link.mutex.Lock()
47-
defer link.mutex.Unlock()
4842
link.ObjType = obj.GetType()
4943
link.ObjKey = obj.GetKey()
5044
}

0 commit comments

Comments
 (0)