Skip to content

Commit bbab401

Browse files
committed
Remove FIXME
1 parent 6152ee3 commit bbab401

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SQLite/Core/Connection.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public final class Connection {
101101
public init(_ location: Location = .inMemory, readonly: Bool = false) throws {
102102
let flags = readonly ? SQLITE_OPEN_READONLY : SQLITE_OPEN_CREATE | SQLITE_OPEN_READWRITE
103103
try check(sqlite3_open_v2(location.description, &_handle, flags | SQLITE_OPEN_FULLMUTEX, nil))
104-
queue.setSpecific(key: /*Migrator FIXME: Use a variable of type DispatchSpecificKey*/ Connection.queueKey, value: queueContext)
104+
queue.setSpecific(key: Connection.queueKey, value: queueContext)
105105
}
106106

107107
/// Initializes a new connection to a database.

0 commit comments

Comments
 (0)