diff --git a/Source/IGListKit/IGListBindingSingleSectionController.h b/Source/IGListKit/IGListBindingSingleSectionController.h index 3594070f..50bb496a 100644 --- a/Source/IGListKit/IGListBindingSingleSectionController.h +++ b/Source/IGListKit/IGListBindingSingleSectionController.h @@ -20,9 +20,6 @@ NS_ASSUME_NONNULL_BEGIN NS_SWIFT_NAME(ListBindingSingleSectionController) @interface IGListBindingSingleSectionController<__covariant ViewModel : id, Cell : UICollectionViewCell *> : IGListSectionController -// Testing the stability of this infra. Defaults to NO. -@property (nonatomic, readwrite, assign) BOOL enabledCellConfigurationDuringUpdate; - #pragma mark - Subclass // Required to be implemented by subclass. diff --git a/Source/IGListKit/IGListBindingSingleSectionController.m b/Source/IGListKit/IGListBindingSingleSectionController.m index 3e1e8fed..d1d208cb 100644 --- a/Source/IGListKit/IGListBindingSingleSectionController.m +++ b/Source/IGListKit/IGListBindingSingleSectionController.m @@ -74,10 +74,8 @@ } _item = object; - if (_enabledCellConfigurationDuringUpdate) { - if (_displayingCell) { - [self configureCell:_displayingCell withViewModel:_item]; - } + if (_displayingCell) { + [self configureCell:_displayingCell withViewModel:_item]; } }