appengine: use stdlib context instead of x/net/context

PR #341 introduce some new import `x/net/context` in parallel of PR #339 replacing them with the standard context.
This quick PR rename those imports.

Change-Id: I94f7edbee851a733b8a307c2ea60923dd990bdb4
GitHub-Last-Rev: fbe7944356
GitHub-Pull-Request: golang/oauth2#342
Reviewed-on: https://go-review.googlesource.com/c/146837
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Antoine GIRARD 2018-11-01 23:01:03 +00:00 committed by Brad Fitzpatrick
parent c453e0c757
commit e0f2c55a7f
2 changed files with 2 additions and 2 deletions

View File

@ -9,11 +9,11 @@
package google package google
import ( import (
"context"
"sort" "sort"
"strings" "strings"
"sync" "sync"
"golang.org/x/net/context"
"golang.org/x/oauth2" "golang.org/x/oauth2"
"google.golang.org/appengine" "google.golang.org/appengine"
) )

View File

@ -9,10 +9,10 @@
package google package google
import ( import (
"context"
"log" "log"
"sync" "sync"
"golang.org/x/net/context"
"golang.org/x/oauth2" "golang.org/x/oauth2"
) )