File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed
Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import PackageDescription
55
66let swiftSettings : [ SwiftSetting ] = [
77 . enableUpcomingFeature( " ExistentialAny " ) ,
8- . enableExperimentalFeature ( " StrictConcurrency " ) ,
8+ . enableUpcomingFeature ( " StrictConcurrency " ) ,
99]
1010
1111let package = Package (
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ public final class PreparedStatement {
122122 }
123123
124124 public func decode< T> ( _ type: T . Type ) throws -> T where T: Decodable {
125- try StatementDecoder . shared . decode ( type, from: self )
125+ try StatementDecoder ( ) . decode ( type, from: self )
126126 }
127127
128128 // MARK: - String
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ import Foundation
22import SQLite3
33
44open class StatementDecoder {
5- static let shared = StatementDecoder ( )
6-
75 open var userInfo : [ CodingUserInfoKey : Any ] = [ : ]
86
97 public init ( ) { }
You can’t perform that action at this time.
0 commit comments