internal: cleanup remaining x/net/context (#2470)

This commit is contained in:
Menghan Li 2018-11-28 12:46:35 -08:00 committed by GitHub
parent f3eb5bc06e
commit 55ef601361
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -16,7 +16,6 @@ For example, to enable server reflection in `example/helloworld`, we need to mak
--- a/examples/helloworld/greeter_server/main.go
+++ b/examples/helloworld/greeter_server/main.go
@@ -40,6 +40,7 @@ import (
"golang.org/x/net/context"
"google.golang.org/grpc"
pb "google.golang.org/grpc/examples/helloworld/helloworld"
+ "google.golang.org/grpc/reflection"

View File

@ -19,6 +19,7 @@
package test
import (
"context"
"errors"
"fmt"
"net"
@ -26,7 +27,6 @@ import (
"testing"
"time"
"golang.org/x/net/context"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/connectivity"