WIP: allow migrations for CoreStoreObjects

This commit is contained in:
John Estropia
2017-04-11 19:13:35 +09:00
parent e5ef4992d3
commit 9f3db61ff7
27 changed files with 1146 additions and 691 deletions

View File

@@ -222,7 +222,7 @@ public enum CoreStoreError: Error, CustomNSError, Hashable {
internal init(_ error: Error?) {
self = error.flatMap { $0.bridgeToSwift } ?? .unknown
self = error.flatMap({ $0.bridgeToSwift }) ?? .unknown
}
}