From 13e0608bc850f8d5b8f4fa0ed57c7c3f3c8035d2 Mon Sep 17 00:00:00 2001 From: Tibor Vass Date: Tue, 5 Sep 2017 13:14:43 -0700 Subject: [PATCH] gofmt -w -s registry/client/repository.go Signed-off-by: Tibor Vass --- registry/client/repository.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/registry/client/repository.go b/registry/client/repository.go index fc4edab92..f94995526 100644 --- a/registry/client/repository.go +++ b/registry/client/repository.go @@ -75,8 +75,8 @@ func NewRegistry(baseURL string, transport http.RoundTripper) (Registry, error) } return ®istry{ - client: client, - ub: ub, + client: client, + ub: ub, }, nil } @@ -145,9 +145,9 @@ func NewRepository(name reference.Named, baseURL string, transport http.RoundTri } return &repository{ - client: client, - ub: ub, - name: name, + client: client, + ub: ub, + name: name, }, nil } @@ -188,17 +188,17 @@ func (r *repository) Manifests(ctx context.Context, options ...distribution.Mani func (r *repository) Tags(ctx context.Context) distribution.TagService { return &tags{ - client: r.client, - ub: r.ub, - name: r.Named(), + client: r.client, + ub: r.ub, + name: r.Named(), } } // tags implements remote tagging operations. type tags struct { - client *http.Client - ub *v2.URLBuilder - name reference.Named + client *http.Client + ub *v2.URLBuilder + name reference.Named } // All returns all tags