Skip to content

Commit 5df314a

Browse files
committed
Updated "context" import since it has become a standard library after go 1.7 https://golang.org/doc/go1.7#context
1 parent 05548ff commit 5df314a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sqlite3.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ void updateHookTrampoline(void*, int, char*, char*, sqlite3_int64);
108108
*/
109109
import "C"
110110
import (
111+
"context"
111112
"database/sql"
112113
"database/sql/driver"
113114
"errors"
@@ -121,8 +122,6 @@ import (
121122
"sync"
122123
"time"
123124
"unsafe"
124-
125-
"golang.org/x/net/context"
126125
)
127126

128127
// SQLiteTimestampFormats is timestamp formats understood by both this module

0 commit comments

Comments
 (0)