mirror of
https://github.com/tmrts/go-patterns.git
synced 2025-04-04 13:43:37 +03:00
creational/singleton: avoid another object creation
This commit is contained in:
parent
f978e42036
commit
668ab73b62
1 changed files with 5 additions and 3 deletions
|
@ -16,9 +16,11 @@ var (
|
|||
)
|
||||
|
||||
func New() singleton {
|
||||
once.Do(func() {
|
||||
instance = make(singleton)
|
||||
})
|
||||
if singleton == nil {
|
||||
once.Do(func() {
|
||||
instance = make(singleton)
|
||||
})
|
||||
}
|
||||
|
||||
return instance
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue