Delete SyncDatabase.resetSelectedForProcessing.

This commit is contained in:
Brent Simmons
2024-03-25 21:18:27 -07:00
parent 27d27cbf1a
commit 4385b2d6b7
3 changed files with 16 additions and 32 deletions

View File

@@ -206,18 +206,6 @@ public extension SyncDatabase {
}
}
}
nonisolated func resetSelectedForProcessing(_ articleIDs: [String], completion: DatabaseCompletionBlock? = nil) {
Task { @MainActor in
do {
try await self.resetSelectedForProcessing(articleIDs)
completion?(nil)
} catch {
completion?(DatabaseError.suspended)
}
}
}
}
private extension SyncDatabase {