diff --git a/Source/IGListAdapter.m b/Source/IGListAdapter.m index 1c64a6ff..f696a8b9 100644 --- a/Source/IGListAdapter.m +++ b/Source/IGListAdapter.m @@ -114,10 +114,6 @@ - (void)updateAfterPublicSettingsChange { if (_collectionView != nil && _dataSource != nil) { [self updateObjects:[[_dataSource objectsForListAdapter:self] copy]]; - - if (IGListExperimentEnabled(self.experiments, IGListExperimentUICVReloadedInSetter)) { - [_collectionView reloadData]; - } } } diff --git a/Source/IGListExperiments.h b/Source/IGListExperiments.h index 277bb9df..0553ddfc 100644 --- a/Source/IGListExperiments.h +++ b/Source/IGListExperiments.h @@ -15,7 +15,7 @@ Bitmask-able options used for prerelease feature testing. */ typedef NS_OPTIONS (NSUInteger, IGListExperiment) { - IGListExperimentUICVReloadedInSetter = 1 << 1, + IGListExperimentNone = 1 << 1, }; /**