Skip to content

Commit 3448067

Browse files
committed
Switch from x/net/context to context
Since go 1.7, "context" is a standard package. Since go 1.9, x/net/context merelyprovides some types aliased to those in the standard context package, so there is no functional change. Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent c2ac4ec commit 3448067

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

continuityfs/fuse.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
package continuityfs
2020

2121
import (
22+
"context"
2223
"errors"
2324
"fmt"
2425
"io"
@@ -31,7 +32,6 @@ import (
3132
"github.com/containerd/continuity"
3233
"github.com/opencontainers/go-digest"
3334
"github.com/sirupsen/logrus"
34-
"golang.org/x/net/context"
3535
)
3636

3737
// File represents any file type (non directory) in the filesystem

0 commit comments

Comments
 (0)