From 749301cdf0dd00b224e0a1a512764022c4889b8a Mon Sep 17 00:00:00 2001 From: Brandon Kieft Date: Mon, 18 Jun 2018 17:14:31 -0700 Subject: [PATCH] Remove dead private methods Summary: There is one private method in IGListKit which isn't being called from anywhere. We should just remove it. Reviewed By: rnystrom Differential Revision: D8346790 fbshipit-source-id: b74766373ca6b9262e03c728b26b647e164fcb03 --- Source/IGListReloadDataUpdater.m | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/IGListReloadDataUpdater.m b/Source/IGListReloadDataUpdater.m index 6f865451..2da5734e 100644 --- a/Source/IGListReloadDataUpdater.m +++ b/Source/IGListReloadDataUpdater.m @@ -58,10 +58,6 @@ [self _synchronousReloadDataWithCollectionView:collectionView]; } -- (void)_reloadItemsInCollectionView:(UICollectionView *)collectionView indexPaths:(NSArray *)indexPaths { - [self _synchronousReloadDataWithCollectionView:collectionView]; -} - - (void)moveSectionInCollectionView:(UICollectionView *)collectionView fromIndex:(NSInteger)fromIndex toIndex:(NSInteger)toIndex { [self _synchronousReloadDataWithCollectionView:collectionView]; }