From bf6a4849c8dd12b98049faae2b6c4dcfe4cfa43c Mon Sep 17 00:00:00 2001 From: hiranya911 Date: Wed, 14 Mar 2018 22:32:17 -0700 Subject: [PATCH] Removing unused member from auth.Client --- auth/auth.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/auth/auth.go b/auth/auth.go index 98822fef..dbb42fd2 100644 --- a/auth/auth.go +++ b/auth/auth.go @@ -62,7 +62,6 @@ type Token struct { // Client facilitates generating custom JWT tokens for Firebase clients, and verifying ID tokens issued // by Firebase backend services. type Client struct { - hc *internal.HTTPClient is *identitytoolkit.Service ks keySource projectID string @@ -123,7 +122,6 @@ func NewClient(ctx context.Context, c *internal.AuthConfig) (*Client, error) { } return &Client{ - hc: &internal.HTTPClient{Client: hc}, is: is, ks: newHTTPKeySource(googleCertURL, hc), projectID: c.ProjectID,