1
0
Fork 0
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:
Hieu Phan 2019-01-13 17:43:02 +00:00
parent f978e42036
commit 12fc50080a

View file

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