From a3d26a73c3b74c3ad5b7cfa0cba63cf8964e84f8 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Thu, 2 Mar 2023 14:07:46 +0200 Subject: [PATCH] removed unnecessary struct pointer --- tools/auth/apple.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/auth/apple.go b/tools/auth/apple.go index 84f0d505..e0d1fdb4 100644 --- a/tools/auth/apple.go +++ b/tools/auth/apple.go @@ -204,7 +204,7 @@ func (p *Apple) fetchJWK(kid string) (*jwk, error) { ) } - jwks := &struct { + jwks := struct { Keys []*jwk }{} if err := json.Unmarshal(rawBody, &jwks); err != nil {