Drop PropertyListCoder conformance

This commit is contained in:
Christian Treffs 2020-08-11 22:26:07 +02:00
parent 54bd41f67c
commit 43dfc619e2
No known key found for this signature in database
GPG Key ID: 49A4B4B460BE3ED4
1 changed files with 0 additions and 11 deletions

View File

@ -7,18 +7,7 @@
#if canImport(Foundation)
import Foundation
#endif
#if canImport(CoreFoundation)
import CoreFoundation
#endif
#if canImport(SwiftFoundation)
import SwiftFoundation
#endif
#if canImport(Foundation) || canImport(CoreFoundation) || canImport(SwiftFoundation)
extension JSONEncoder: TopLevelEncoder { }
extension JSONDecoder: TopLevelDecoder { }
extension PropertyListEncoder: TopLevelEncoder { }
extension PropertyListDecoder: TopLevelDecoder { }
#endif