Remove a number of instances of the word master.

This commit is contained in:
Brent Simmons
2024-11-14 20:04:50 -08:00
parent c3098f14e1
commit 44fbcd85b6
11 changed files with 24 additions and 28 deletions

View File

@@ -153,9 +153,9 @@ private extension MasterTimelineTableViewCell {
addSubviewAtInit(starView, hidden: true)
}
func updatedLayout(width: CGFloat) -> MasterTimelineCellLayout {
func updatedLayout(width: CGFloat) -> TimelineCellLayout {
if UIApplication.shared.preferredContentSizeCategory.isAccessibilityCategory {
return MasterTimelineAccessibilityCellLayout(width: width, insets: safeAreaInsets, cellData: cellData)
return TimelineAccessibilityCellLayout(width: width, insets: safeAreaInsets, cellData: cellData)
} else {
return MasterTimelineDefaultCellLayout(width: width, insets: safeAreaInsets, cellData: cellData)
}