summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/generic
diff options
context:
space:
mode:
authorSteve Taylor <steven@taylormuff.co.uk>2020-03-06 12:42:57 +0000
committerSteve Taylor <steven@taylormuff.co.uk>2020-03-06 13:19:21 +0000
commit06f5664e9dc335e3cfc42475e8f807036312a801 (patch)
treee0223bd2b77a10ee9f480bea6265fbc08395588e /pkg/api/handlers/generic
parent920d09c1740547558c64315c0c2a826fc8294bda (diff)
downloadpodman-06f5664e9dc335e3cfc42475e8f807036312a801.tar.gz
podman-06f5664e9dc335e3cfc42475e8f807036312a801.tar.bz2
podman-06f5664e9dc335e3cfc42475e8f807036312a801.zip
Removed extraneous comments and defaults plus amended variable declaration
Signed-off-by: Steve Taylor <steven@taylormuff.co.uk>
Diffstat (limited to 'pkg/api/handlers/generic')
-rw-r--r--pkg/api/handlers/generic/images.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/api/handlers/generic/images.go b/pkg/api/handlers/generic/images.go
index 63f71eeff..3da5807ec 100644
--- a/pkg/api/handlers/generic/images.go
+++ b/pkg/api/handlers/generic/images.go
@@ -305,7 +305,6 @@ func GetImages(w http.ResponseWriter, r *http.Request) {
utils.Error(w, "Something went wrong.", http.StatusInternalServerError, errors.Wrap(err, "Failed get images"))
return
}
- // +1 removed from len(images) as this leaves a null entry at the end of the image array
var summaries = make([]*handlers.ImageSummary, len(images))
for j, img := range images {
is, err := handlers.ImageToImageSummary(img)