From 666716a26596a9197fc22c1cd3a0111d7556f500 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Thu, 27 Apr 2023 22:02:06 -0400 Subject: [PATCH] Update pkg/name/registry.go Signed-off-by: Jason Hall --- pkg/name/registry.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/name/registry.go b/pkg/name/registry.go index ba0a1770a..5b0d01769 100644 --- a/pkg/name/registry.go +++ b/pkg/name/registry.go @@ -53,7 +53,6 @@ func (r Registry) String() string { // Repo returns a Repository in the Registry with the given name. func (r Registry) Repo(repo ...string) Repository { - // TODO: Panic if repo is empty? return Repository{Registry: r, repository: path.Join(repo...)} }