mirror of
https://github.com/tmrts/go-patterns.git
synced 2025-04-03 13:13:34 +03:00
creational/object-pool: fix compile error
This commit is contained in:
parent
f978e42036
commit
12fc50080a
1 changed files with 2 additions and 2 deletions
|
@ -10,14 +10,14 @@ package pool
|
|||
|
||||
type Pool chan *Object
|
||||
|
||||
func New(total int) *Pool {
|
||||
func New(total int) Pool {
|
||||
p := make(Pool, total)
|
||||
|
||||
for i := 0; i < total; i++ {
|
||||
p <- new(Object)
|
||||
}
|
||||
|
||||
return &p
|
||||
return p
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue