Delete no-longer-used fetchStarredAndUnreadCount completion block version.

This commit is contained in:
Brent Simmons
2024-04-03 21:53:11 -07:00
parent 2eeb0050e2
commit f0634d7ab0
3 changed files with 0 additions and 33 deletions

View File

@@ -749,10 +749,6 @@ public enum FetchType {
try await database.starredAndUnreadCount(feedIDs: allFeedIDs()) ?? 0
}
public func fetchUnreadCountForStarredArticles(_ completion: @escaping SingleUnreadCountCompletionBlock) {
database.fetchStarredAndUnreadCount(for: flattenedFeeds().feedIDs(), completion: completion)
}
public func fetchUnreadArticleIDs(_ completion: @escaping ArticleIDsCompletionBlock) {
database.fetchUnreadArticleIDsAsync(completion: completion)
}
@@ -1402,7 +1398,6 @@ extension Account {
public func existingFeed(withExternalID externalID: String) -> Feed? {
return externalIDToFeedDictionary[externalID]
}
}
// MARK: - OPMLRepresentable