diff --git a/Examples/Examples-iOS/IGListKitExamples/SectionControllers/MonthSectionController.swift b/Examples/Examples-iOS/IGListKitExamples/SectionControllers/MonthSectionController.swift index 54fb05fa..e1db4a61 100644 --- a/Examples/Examples-iOS/IGListKitExamples/SectionControllers/MonthSectionController.swift +++ b/Examples/Examples-iOS/IGListKitExamples/SectionControllers/MonthSectionController.swift @@ -95,6 +95,4 @@ final class MonthSectionController: ListBindingSectionController, update(animated: true) } - func sectionController(_ sectionController: ListBindingSectionController, didDeselectItemAt index: Int, viewModel: Any) {} - } diff --git a/Examples/Examples-tvOS/IGListKitExamples/SectionControllers/CarouselSectionController.swift b/Examples/Examples-tvOS/IGListKitExamples/SectionControllers/CarouselSectionController.swift index c6c1f336..b77c7913 100644 --- a/Examples/Examples-tvOS/IGListKitExamples/SectionControllers/CarouselSectionController.swift +++ b/Examples/Examples-tvOS/IGListKitExamples/SectionControllers/CarouselSectionController.swift @@ -52,6 +52,4 @@ final class CarouselSectionController: ListSectionController { number = object as? Int } - override func didSelectItem(at index: Int) {} - } diff --git a/Examples/Examples-tvOS/IGListKitExamples/SectionControllers/HorizontalSectionController.swift b/Examples/Examples-tvOS/IGListKitExamples/SectionControllers/HorizontalSectionController.swift index 18a52ade..40166922 100644 --- a/Examples/Examples-tvOS/IGListKitExamples/SectionControllers/HorizontalSectionController.swift +++ b/Examples/Examples-tvOS/IGListKitExamples/SectionControllers/HorizontalSectionController.swift @@ -53,8 +53,6 @@ final class HorizontalSectionController: ListSectionController, ListAdapterDataS number = object as? Int } - override func didSelectItem(at index: Int) {} - // MARK: ListAdapterDataSource func objects(for listAdapter: ListAdapter) -> [ListDiffable] { diff --git a/Examples/Examples-tvOS/IGListKitExamples/SectionControllers/LabelSectionController.swift b/Examples/Examples-tvOS/IGListKitExamples/SectionControllers/LabelSectionController.swift index cd54a288..5893930c 100644 --- a/Examples/Examples-tvOS/IGListKitExamples/SectionControllers/LabelSectionController.swift +++ b/Examples/Examples-tvOS/IGListKitExamples/SectionControllers/LabelSectionController.swift @@ -39,6 +39,4 @@ final class LabelSectionController: ListSectionController { self.object = String(describing: object) } - override func didSelectItem(at index: Int) {} - }