diff --git a/ArticlesDatabase/Sources/ArticlesDatabase/ArticlesDatabaseCompatibility.swift b/ArticlesDatabase/Sources/ArticlesDatabase/ArticlesDatabaseCompatibility.swift index ee648e638..e5b077cbd 100644 --- a/ArticlesDatabase/Sources/ArticlesDatabase/ArticlesDatabaseCompatibility.swift +++ b/ArticlesDatabase/Sources/ArticlesDatabase/ArticlesDatabaseCompatibility.swift @@ -58,19 +58,6 @@ public extension ArticlesDatabase { // MARK: - Status - /// Fetch the articleIDs of unread articles. - nonisolated func fetchUnreadArticleIDsAsync(completion: @escaping ArticleIDsCompletionBlock) { - - Task { - do { - let articleIDs = try await unreadArticleIDs()! - callArticleIDsCompletion(completion, .success(articleIDs)) - } catch { - callArticleIDsCompletion(completion, .failure(.suspended)) - } - } - } - /// Fetch the articleIDs of starred articles. nonisolated func fetchStarredArticleIDsAsync(completion: @escaping ArticleIDsCompletionBlock) {