From 1e259062fce6afa10afe74549b7370cd63a505b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Fri, 12 Dec 2025 15:25:43 +0100 Subject: [PATCH] cli/tree: Remove unused `all` field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Gronowski --- cli/command/image/list.go | 1 - cli/command/image/tree.go | 1 - 2 files changed, 2 deletions(-) diff --git a/cli/command/image/list.go b/cli/command/image/list.go index 7efaf8426d..a34ddc5f3b 100644 --- a/cli/command/image/list.go +++ b/cli/command/image/list.go @@ -127,7 +127,6 @@ func runImages(ctx context.Context, dockerCLI command.Cli, options imagesOptions if useTree { return runTree(ctx, dockerCLI, treeOptions{ images: images, - all: options.all, filters: filters, expanded: options.tree, }) diff --git a/cli/command/image/tree.go b/cli/command/image/tree.go index 48b7d409ff..70b7482867 100644 --- a/cli/command/image/tree.go +++ b/cli/command/image/tree.go @@ -26,7 +26,6 @@ const untaggedName = "" type treeOptions struct { images []imagetypes.Summary - all bool filters client.Filters expanded bool }