diff options
author | Jhon Honce <jhonce@redhat.com> | 2020-04-16 12:06:36 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2020-04-21 07:56:10 -0700 |
commit | b21a5b7ff470612e2bde5f120aecfbc1a0881689 (patch) | |
tree | a47e3a42d363a99537a4d154bfecd2eba0de40fd /cmd/podman/images/list.go | |
parent | f4c2eb1d9dcff5feda5c3eae81ce1bcdbf166ec4 (diff) | |
download | podman-b21a5b7ff470612e2bde5f120aecfbc1a0881689.tar.gz podman-b21a5b7ff470612e2bde5f120aecfbc1a0881689.tar.bz2 podman-b21a5b7ff470612e2bde5f120aecfbc1a0881689.zip |
Provide a json variable pointing to a configured json API
* All commands now using the same instance of json API
* `json` variable created in each package to prevent `encoding/json`
from being re-introduced
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'cmd/podman/images/list.go')
-rw-r--r-- | cmd/podman/images/list.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cmd/podman/images/list.go b/cmd/podman/images/list.go index 63ddc5d56..b979cb6af 100644 --- a/cmd/podman/images/list.go +++ b/cmd/podman/images/list.go @@ -14,7 +14,6 @@ import ( "github.com/containers/libpod/cmd/podman/registry" "github.com/containers/libpod/pkg/domain/entities" "github.com/docker/go-units" - jsoniter "github.com/json-iterator/go" "github.com/spf13/cobra" "github.com/spf13/pflag" ) @@ -127,7 +126,6 @@ func writeJSON(imageS []*entities.ImageSummary) error { imgs = append(imgs, h) } - json := jsoniter.ConfigCompatibleWithStandardLibrary enc := json.NewEncoder(os.Stdout) return enc.Encode(imgs) } |