This commit is contained in:
John Estropia
2026-07-24 11:51:36 +09:00
parent 1ea9ad7c4a
commit 13093d72d4
51 changed files with 1083 additions and 243 deletions
@@ -77,7 +77,7 @@ extension Internals {
}
@nonobjc
internal func performFetchFromSpecifiedStores() throws(any Swift.Error) {
internal func performFetchFromSpecifiedStores() throws(any Swift::Error) {
try self.reapplyAffectedStores(self.typedFetchRequest, self.managedObjectContext)
try self.performFetch()
@@ -106,6 +106,6 @@ extension Internals {
private let reapplyAffectedStores: (
_ fetchRequest: Internals.CoreStoreFetchRequest<NSManagedObject>,
_ context: NSManagedObjectContext
) throws(any Swift.Error) -> Void
) throws(any Swift::Error) -> Void
}
}