fix: remove duplicate array interval
This commit is contained in:
parent
1a8e17598f
commit
f6497a7bb7
2 changed files with 5 additions and 1 deletions
|
@ -7,6 +7,10 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
|
|||
|
||||
## Unreleased
|
||||
|
||||
### Removed
|
||||
|
||||
- duplicate array interval
|
||||
|
||||
## v1.0.0 - 2019-06-25
|
||||
|
||||
### Added
|
||||
|
|
|
@ -63,7 +63,7 @@ func main() {
|
|||
})
|
||||
}
|
||||
|
||||
for _, proc := range procs[:*LIMIT] {
|
||||
for _, proc := range procs {
|
||||
if proc.Swap == 0 || proc.CmdLine == "" {
|
||||
continue
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue