Remove intercepted duplicate selector in IGListAdapterProxy. (#1291)

Summary:
## Changes in this pull request

### Checklist
Don't need tests.

- [x] All tests pass. Demo project builds and runs.
- [x] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md)
Pull Request resolved: https://github.com/Instagram/IGListKit/pull/1291

Reviewed By: lorixx

Differential Revision: D15564138

Pulled By: candance

fbshipit-source-id: a0fabbd6a8f8389b09da7cd5484df75d67a709e5
This commit is contained in:
kinarob 2019-06-01 11:52:08 -07:00 committed by Facebook Github Bot
parent e9be68c9c9
commit de08713b33

View file

@ -35,12 +35,7 @@ static BOOL isInterceptedSelector(SEL sel) {
sel == @selector(collectionView:layout:minimumLineSpacingForSectionAtIndex:) ||
sel == @selector(collectionView:layout:referenceSizeForFooterInSection:) ||
sel == @selector(collectionView:layout:referenceSizeForHeaderInSection:) ||
sel == @selector(collectionView:layout:referenceSizeForHeaderInSection:) ||
// UIScrollViewDelegate
sel == @selector(scrollViewDidScroll:) ||
sel == @selector(scrollViewWillBeginDragging:) ||
sel == @selector(scrollViewDidEndDragging:willDecelerate:) ||
sel == @selector(scrollViewDidEndDecelerating:) ||
// IGListCollectionViewDelegateLayout
sel == @selector(collectionView:layout:customizedInitialLayoutAttributes:atIndexPath:) ||
sel == @selector(collectionView:layout:customizedFinalLayoutAttributes:atIndexPath:)