fix: remove duplicate array interval

This commit is contained in:
Adrien Waksberg 2019-06-26 21:39:17 +02:00
parent 1a8e17598f
commit f6497a7bb7
2 changed files with 5 additions and 1 deletions

View file

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

View file

@ -63,7 +63,7 @@ func main() {
})
}
for _, proc := range procs[:*LIMIT] {
for _, proc := range procs {
if proc.Swap == 0 || proc.CmdLine == "" {
continue
}