Skip to content

Commit

Permalink
Fix Swiftlint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
groue committed Oct 6, 2024
1 parent 6a4f454 commit 68d1291
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions GRDB/Fixits.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Fixits for changes introduced by GRDB 7.0.0
// swiftlint:disable all

extension Configuration {
@available(*, unavailable, message: "The default transaction kind is now automatically managed.")
Expand All @@ -15,3 +16,5 @@ extension DatabasePool {
@available(*, unavailable, message: "concurrentRead has been removed. Use `asyncConcurrentRead` instead.")
public func concurrentRead<T>(_ value: @escaping (Database) throws -> T) -> DatabaseFuture<T> { preconditionFailure() }
}

// swiftlint:enable all

0 comments on commit 68d1291

Please sign in to comment.