From f7c8dd5836002f3bf85a7bbe6c949cdece5194df Mon Sep 17 00:00:00 2001 From: baude Date: Thu, 22 Mar 2018 10:17:50 -0500 Subject: Stage 4 Image cleanup Cull funcs from runtime_img.go which are no longer needed. Also, fix any remaining spots that use the old image technique. Signed-off-by: baude Closes: #532 Approved by: mheon --- libpod/util.go | 5 ----- 1 file changed, 5 deletions(-) (limited to 'libpod/util.go') diff --git a/libpod/util.go b/libpod/util.go index c258af307..106dd4666 100644 --- a/libpod/util.go +++ b/libpod/util.go @@ -47,11 +47,6 @@ func FuncTimer(funcName string) { fmt.Printf("%s executed in %d ms\n", funcName, elapsed) } -// hasTransport determines if the image string contains '://', returns bool -func hasTransport(image string) bool { - return strings.Contains(image, "://") -} - // CopyStringStringMap deep copies a map[string]string and returns the result func CopyStringStringMap(m map[string]string) map[string]string { n := map[string]string{} -- cgit v1.2.3-54-g00ecf