From 69b30f5012123b70842ae9d61db461e089d8ce5f Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Mon, 14 Oct 2024 22:06:26 -0700 Subject: [PATCH] Delete unused function. --- Mac/MainWindow/Timeline/TimelineViewController.swift | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Mac/MainWindow/Timeline/TimelineViewController.swift b/Mac/MainWindow/Timeline/TimelineViewController.swift index 6a21545c6..5e3af714c 100644 --- a/Mac/MainWindow/Timeline/TimelineViewController.swift +++ b/Mac/MainWindow/Timeline/TimelineViewController.swift @@ -896,13 +896,6 @@ extension TimelineViewController: NSTableViewDelegate { cell.cellData = TimelineCellData(article: article, showFeedName: showFeedNames, feedName: article.feed?.nameForDisplay, byline: article.byline(), iconImage: iconImage, showIcon: showIcons, featuredImage: nil) } - private func iconFor(_ article: Article) -> IconImage? { - if !showIcons { - return nil - } - return IconImageCache.shared.imageForArticle(article) - } - private func avatarForAuthor(_ author: Author) -> IconImage? { return AuthorAvatarDownloader.shared.image(for: author) }