mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-07-19 03:01:13 +02:00
WIP
This commit is contained in:
@@ -85,7 +85,7 @@ extension DiffableDataSource {
|
||||
public init(
|
||||
tableView: UITableView,
|
||||
dataStack: DataStack,
|
||||
cellProvider: @escaping @MainActor (UITableView, IndexPath, O) -> UITableViewCell?
|
||||
cellProvider: @escaping @MainActor @Sendable (UITableView, IndexPath, O) -> UITableViewCell?
|
||||
) {
|
||||
|
||||
self.cellProvider = cellProvider
|
||||
@@ -150,7 +150,7 @@ extension DiffableDataSource {
|
||||
cellForRowAt indexPath: IndexPath
|
||||
) -> UITableViewCell {
|
||||
|
||||
guard let objectID = self.itemID(for: indexPath) else {
|
||||
guard let objectID: NSManagedObjectID = self.itemID(for: indexPath) else {
|
||||
|
||||
Internals.abort("Object at \(Internals.typeName(IndexPath.self)) \(indexPath) already removed from list")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user