From 8c0fed90077b4dbe7c53f52327e1b4a9628e51ca Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Thu, 21 Mar 2024 00:34:01 +0100 Subject: [PATCH] Conformed the FeedItemCell and the TopWordsCell table cells in the Feed framework to the TableCell protocol from the UI library. --- Frameworks/Feed/Bundle/Sources/UI/Cells/FeedItemCell.swift | 2 +- Frameworks/Feed/Bundle/Sources/UI/Cells/TopWordsCell.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Frameworks/Feed/Bundle/Sources/UI/Cells/FeedItemCell.swift b/Frameworks/Feed/Bundle/Sources/UI/Cells/FeedItemCell.swift index 5d67c30..a877df0 100644 --- a/Frameworks/Feed/Bundle/Sources/UI/Cells/FeedItemCell.swift +++ b/Frameworks/Feed/Bundle/Sources/UI/Cells/FeedItemCell.swift @@ -9,7 +9,7 @@ import ReviewsUIKit import UIKit -final class FeedItemCell: UITableViewCell, CellIdentifiable { +final class FeedItemCell: UITableViewCell, TableCell { // MARK: Constants static let cellID = "FeedItemCell" diff --git a/Frameworks/Feed/Bundle/Sources/UI/Cells/TopWordsCell.swift b/Frameworks/Feed/Bundle/Sources/UI/Cells/TopWordsCell.swift index b0b9520..378ffd2 100644 --- a/Frameworks/Feed/Bundle/Sources/UI/Cells/TopWordsCell.swift +++ b/Frameworks/Feed/Bundle/Sources/UI/Cells/TopWordsCell.swift @@ -9,7 +9,7 @@ import ReviewsUIKit import UIKit -final class TopWordsCell: UITableViewCell, CellIdentifiable { +final class TopWordsCell: UITableViewCell, TableCell { // MARK: Constants static let cellID = "TopWordsCell"