From 5ed92699f33b4a97e9bcbe987ae3bfed5547648e Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 30 Mar 2022 18:35:55 +0200 Subject: [PATCH] cli/command: remove WithContextEndpointType() as it's unused This was added in 3126920af14ea5127e00a2f8f9d8e07a6c3f6ff9, and modified in 520be05c494940dfd70f1c43765c52735570f212, but is not used anywhere. Signed-off-by: Sebastiaan van Stijn --- cli/command/cli_options.go | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/cli/command/cli_options.go b/cli/command/cli_options.go index cd81794982..535a6d5338 100644 --- a/cli/command/cli_options.go +++ b/cli/command/cli_options.go @@ -1,13 +1,10 @@ package command import ( - "fmt" "io" "os" "strconv" - "github.com/docker/cli/cli/context/docker" - "github.com/docker/cli/cli/context/store" "github.com/docker/cli/cli/streams" "github.com/moby/term" ) @@ -82,19 +79,6 @@ func WithContentTrust(enabled bool) DockerCliOption { } } -// WithContextEndpointType add support for an additional typed endpoint in the context store -// Plugins should use this to store additional endpoints configuration in the context store -func WithContextEndpointType(endpointName string, endpointType store.TypeGetter) DockerCliOption { - return func(cli *DockerCli) error { - switch endpointName { - case docker.DockerEndpoint: - return fmt.Errorf("cannot change %q endpoint type", endpointName) - } - cli.contextStoreConfig.SetEndpoint(endpointName, endpointType) - return nil - } -} - // WithDefaultContextStoreConfig configures the cli to use the default context store configuration. func WithDefaultContextStoreConfig() DockerCliOption { return func(cli *DockerCli) error {