From ee883d308dba8c31a32777983eda58bc548a3c42 Mon Sep 17 00:00:00 2001 From: Koen Punt Date: Fri, 20 Dec 2019 10:57:25 -0800 Subject: [PATCH] remove non-existing parameters from docblock (#1412) Summary: The `cellClass` parameter was still documented, but no longer present in the method signature. Pull Request resolved: https://github.com/Instagram/IGListKit/pull/1412 Reviewed By: lorixx Differential Revision: D19178421 Pulled By: iperry90 fbshipit-source-id: 17e69db2c5d52581bfd205b5557c6564cf0e5673 --- Source/IGListSwiftKit/IGListCollectionContext+Refinements.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/IGListSwiftKit/IGListCollectionContext+Refinements.swift b/Source/IGListSwiftKit/IGListCollectionContext+Refinements.swift index c5fdb311..14212be4 100644 --- a/Source/IGListSwiftKit/IGListCollectionContext+Refinements.swift +++ b/Source/IGListSwiftKit/IGListCollectionContext+Refinements.swift @@ -13,7 +13,6 @@ extension ListCollectionContext { Dequeues a cell from the collection view reuse pool. - Parameters: - - cellClass: The class of the cell you want to dequeue. - reuseIdentifier: A reuse identifier for the specified cell. This parameter may be `nil`. - sectionController: The section controller requesting this information. - index: The index of the cell. @@ -41,7 +40,6 @@ extension ListCollectionContext { Dequeues a cell from the collection view reuse pool. - Parameters: - - cellClass: The class of the cell you want to dequeue. - sectionController: The section controller requesting this information. - index: The index of the cell.