Browse code

Remove stray uses of "golang.org/x/net/context"

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2018/07/13 16:53:36
Showing 2 changed files
... ...
@@ -1,9 +1,8 @@
1 1
 package client // import "github.com/docker/docker/client"
2 2
 
3 3
 import (
4
+	"context"
4 5
 	"net/url"
5
-
6
-	"golang.org/x/net/context"
7 6
 )
8 7
 
9 8
 // BuildCancel requests the daemon to cancel ongoing build request
... ...
@@ -1,6 +1,7 @@
1 1
 package client
2 2
 
3 3
 import (
4
+	"context"
4 5
 	"fmt"
5 6
 	"io/ioutil"
6 7
 	"net"
... ...
@@ -12,7 +13,6 @@ import (
12 12
 	"github.com/docker/docker/api/server/httputils"
13 13
 	"github.com/docker/docker/api/types"
14 14
 	"github.com/pkg/errors"
15
-	"golang.org/x/net/context"
16 15
 	"gotest.tools/assert"
17 16
 )
18 17