From efb1f141a4d938638abbb8a039f76510990b704f Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Tue, 12 Jul 2022 15:00:16 +0200 Subject: [PATCH] api/types/container: remove deprecated types This removes; - ContainerCreateCreatedBody (alias for CreateResponse) - ContainerWaitOKBody (alias for WaitResponse) - ContainerWaitOKBodyError (alias for WaitExitError) Signed-off-by: Sebastiaan van Stijn --- api/types/container/deprecated.go | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 api/types/container/deprecated.go diff --git a/api/types/container/deprecated.go b/api/types/container/deprecated.go deleted file mode 100644 index 0cb70e3638..0000000000 --- a/api/types/container/deprecated.go +++ /dev/null @@ -1,16 +0,0 @@ -package container // import "github.com/docker/docker/api/types/container" - -// ContainerCreateCreatedBody OK response to ContainerCreate operation -// -// Deprecated: use CreateResponse -type ContainerCreateCreatedBody = CreateResponse - -// ContainerWaitOKBody OK response to ContainerWait operation -// -// Deprecated: use WaitResponse -type ContainerWaitOKBody = WaitResponse - -// ContainerWaitOKBodyError container waiting error, if any -// -// Deprecated: use WaitExitError -type ContainerWaitOKBodyError = WaitExitError