From 6fc6d809e054a44e5ecd4eca5b398d934bddea17 Mon Sep 17 00:00:00 2001 From: Antonio Murdaca Date: Tue, 31 May 2016 10:20:02 +0200 Subject: [PATCH] Remove ManifestMIMETypes Signed-off-by: Antonio Murdaca --- docker/utils/manifest.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/docker/utils/manifest.go b/docker/utils/manifest.go index aa87a2d2..ac943458 100644 --- a/docker/utils/manifest.go +++ b/docker/utils/manifest.go @@ -10,15 +10,6 @@ import ( // FIXME: Should we just use docker/distribution and docker/docker implementations directly? -// ManifestMIMETypes returns a slice of supported MIME types -func ManifestMIMETypes() []string { - return []string{ - DockerV2Schema1MIMEType, - DockerV2Schema2MIMEType, - DockerV2ListMIMEType, - } -} - const ( // DockerV2Schema1MIMEType MIME type represents Docker manifest schema 1 DockerV2Schema1MIMEType = "application/vnd.docker.distribution.manifest.v1+json"