vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go
changeset 251 1c52a0eeb952
parent 242 2a9ec03fe5a1
--- a/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go	Wed Sep 18 19:17:42 2019 +0200
+++ b/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go	Sun Feb 16 18:54:01 2020 +0100
@@ -2,18 +2,15 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// +build go1.7
-
 // Package ctxhttp provides helper functions for performing context-aware HTTP requests.
 package ctxhttp // import "golang.org/x/net/context/ctxhttp"
 
 import (
+	"context"
 	"io"
 	"net/http"
 	"net/url"
 	"strings"
-
-	"golang.org/x/net/context"
 )
 
 // Do sends an HTTP request with the provided http.Client and returns