Removed some code that's not yet finished

This commit is contained in:
Patrick Jones 2021-07-29 14:44:16 -07:00
parent d921d8f367
commit e4ec8cdba1
1 changed files with 1 additions and 5 deletions

View File

@ -12,10 +12,6 @@ import (
"golang.org/x/oauth2/google/downscope" "golang.org/x/oauth2/google/downscope"
) )
func Example() {
}
func ExampleNewTokenSource() { func ExampleNewTokenSource() {
ctx := context.Background() ctx := context.Background()
// Initializes an accessBoundary with one Rule. // Initializes an accessBoundary with one Rule.
@ -38,7 +34,7 @@ func ExampleNewTokenSource() {
} }
// Enables automatic token refreshing // Enables automatic token refreshing
_ := oauth2.ReuseTokenSource(nil, dts) _ = oauth2.ReuseTokenSource(nil, dts)
// You can now use the token held in myTokenSource to make // You can now use the token held in myTokenSource to make
// Google Cloud Storage calls, as follows: // Google Cloud Storage calls, as follows: