From 0100e4262caf7c685f9fd42821a5e74bf213f0c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=94=B0=E6=AC=A7?= Date: Thu, 6 Jul 2017 00:03:39 +0800 Subject: [PATCH] adjust import order (#1311) --- go16.go | 3 +-- go17.go | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/go16.go b/go16.go index 6775d23c..f3dbf217 100644 --- a/go16.go +++ b/go16.go @@ -27,11 +27,10 @@ import ( "net/http" "os" + "golang.org/x/net/context" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" "google.golang.org/grpc/transport" - - "golang.org/x/net/context" ) // dialContext connects to the address on the named network. diff --git a/go17.go b/go17.go index 66501b0f..a3421d99 100644 --- a/go17.go +++ b/go17.go @@ -27,11 +27,10 @@ import ( "net/http" "os" + netctx "golang.org/x/net/context" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" "google.golang.org/grpc/transport" - - netctx "golang.org/x/net/context" ) // dialContext connects to the address on the named network.