Skip to content

Commit 4e0e685

Browse files
committed
Make CBLDecoder open
1 parent 48711ea commit 4e0e685

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/CouchbaseLiteSwiftCoder/CBLDecoder.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import CouchbaseLiteSwift
33

44
public protocol CBLDecodable: Decodable { }
55

6-
public class CBLDecoder {
6+
open class CBLDecoder {
77
public func decode<T: CBLDecodable>(_ type: T.Type, from document: Document) throws -> T {
88
let decoder = _CBLDecoder(with: document)
99
return try type.init(from: decoder)

0 commit comments

Comments
 (0)