diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2017-12-16 09:38:55 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-12-18 16:46:05 +0000 |
commit | de3468e120d489d046c08dad72ba2262e222ccb1 (patch) | |
tree | 8956f751c460baf23f95b5bfd9a441bd71d8f5dd /cmd/kpod/top.go | |
parent | f2f9fdf12674623dd0d38b32408083cccdad5e66 (diff) | |
download | podman-de3468e120d489d046c08dad72ba2262e222ccb1.tar.gz podman-de3468e120d489d046c08dad72ba2262e222ccb1.tar.bz2 podman-de3468e120d489d046c08dad72ba2262e222ccb1.zip |
CleanUp problems found my make lint.
Remove or comment out unused functions.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #145
Approved by: umohnani8
Diffstat (limited to 'cmd/kpod/top.go')
-rw-r--r-- | cmd/kpod/top.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/kpod/top.go b/cmd/kpod/top.go index 9c2fcd34e..0c1eabbdb 100644 --- a/cmd/kpod/top.go +++ b/cmd/kpod/top.go @@ -164,8 +164,8 @@ func psDataToPSParams(data []string, headers []string) ([]PSParams, error) { //PSParams is a list of options that the command line ps recognizes type PSParams struct { - CPU string `json: "%CPU"` - MEM string `json: "%MEM"` + CPU string + MEM string COMMAND string BLOCKED string START string |