From e4ec8cdba17dcb0556c47de22c3b211350d8b9a1 Mon Sep 17 00:00:00 2001 From: Patrick Jones Date: Thu, 29 Jul 2021 14:44:16 -0700 Subject: [PATCH] Removed some code that's not yet finished --- google/downscope/example_test.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/google/downscope/example_test.go b/google/downscope/example_test.go index 9397283..475efc2 100644 --- a/google/downscope/example_test.go +++ b/google/downscope/example_test.go @@ -12,10 +12,6 @@ import ( "golang.org/x/oauth2/google/downscope" ) -func Example() { - -} - func ExampleNewTokenSource() { ctx := context.Background() // Initializes an accessBoundary with one Rule. @@ -38,7 +34,7 @@ func ExampleNewTokenSource() { } // Enables automatic token refreshing - _ := oauth2.ReuseTokenSource(nil, dts) + _ = oauth2.ReuseTokenSource(nil, dts) // You can now use the token held in myTokenSource to make // Google Cloud Storage calls, as follows: