From 7ba71c39891cbd390d0a45f87fed1978717c4e4b Mon Sep 17 00:00:00 2001 From: Blake Mizerany Date: Mon, 29 Apr 2024 21:05:43 -0700 Subject: [PATCH] ... --- client/registry/registry.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/client/registry/registry.go b/client/registry/registry.go index 04fb7864e..aac4230d6 100644 --- a/client/registry/registry.go +++ b/client/registry/registry.go @@ -29,9 +29,6 @@ var ( type Client struct { BaseURL string - // TODO(bmizerany): remove NameFill (once we remove model dep here) - NameFill string - Logger *slog.Logger } @@ -208,7 +205,6 @@ func (nopSeeker) Seek(int64, int) (int64, error) { // If the server requests layers not found in the cache, ErrLayerNotFound is // returned. func (c *Client) Push(ctx context.Context, cache Cache, name string) error { - // TODO(bmizerany): remove dep on model.Name manifest := cache.ManifestData(name) if len(manifest) == 0 { return fmt.Errorf("manifest not found: %s", name)