From b33f3c7802ac4308c10ca3fdbeec8a3fc46c3c97 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 12 Jul 2021 12:20:19 +0200 Subject: [PATCH] client: remove unused Platform field from configWrapper This field was added in 7a9cb29fb980c0ab3928272cdc24c7089b2fcf64, but appears to be unused, so removing it. Signed-off-by: Sebastiaan van Stijn --- client/container_create.go | 1 - 1 file changed, 1 deletion(-) diff --git a/client/container_create.go b/client/container_create.go index cfae96a6f5..905b99044c 100644 --- a/client/container_create.go +++ b/client/container_create.go @@ -16,7 +16,6 @@ type configWrapper struct { *container.Config HostConfig *container.HostConfig NetworkingConfig *network.NetworkingConfig - Platform *specs.Platform } // ContainerCreate creates a new container based on the given configuration.