mirror of
https://github.com/panjf2000/ants.git
synced 2025-12-16 18:11:03 +00:00
Merge pull request #14 from SimePel/master
Remove meaningless if statements
This commit is contained in:
commit
29730bb703
2
pool.go
2
pool.go
@ -146,12 +146,10 @@ func (p *Pool) ReSize(size int) {
|
||||
}
|
||||
atomic.StoreInt32(&p.capacity, int32(size))
|
||||
diff := p.Running() - size
|
||||
if diff > 0 {
|
||||
for i := 0; i < diff; i++ {
|
||||
p.getWorker().task <- nil
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Release Closes this pool.
|
||||
func (p *Pool) Release() error {
|
||||
|
||||
@ -148,12 +148,10 @@ func (p *PoolWithFunc) ReSize(size int) {
|
||||
}
|
||||
atomic.StoreInt32(&p.capacity, int32(size))
|
||||
diff := p.Running() - size
|
||||
if diff > 0 {
|
||||
for i := 0; i < diff; i++ {
|
||||
p.getWorker().args <- nil
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Release Closed this pool.
|
||||
func (p *PoolWithFunc) Release() error {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user