Remove reload data experiment

Summary: Another experiment with neutral results. Removing.

Reviewed By: jessesquires

Differential Revision: D4127194

fbshipit-source-id: cdafca161e0fec95cb35baad446929a03bb1cf4c
This commit is contained in:
Ryan Nystrom 2016-11-03 16:27:20 -07:00 committed by Facebook Github Bot
parent f682dfd45c
commit cd6f8bce2a
2 changed files with 1 additions and 5 deletions

View file

@ -114,10 +114,6 @@
- (void)updateAfterPublicSettingsChange {
if (_collectionView != nil && _dataSource != nil) {
[self updateObjects:[[_dataSource objectsForListAdapter:self] copy]];
if (IGListExperimentEnabled(self.experiments, IGListExperimentUICVReloadedInSetter)) {
[_collectionView reloadData];
}
}
}

View file

@ -15,7 +15,7 @@
Bitmask-able options used for prerelease feature testing.
*/
typedef NS_OPTIONS (NSUInteger, IGListExperiment) {
IGListExperimentUICVReloadedInSetter = 1 << 1,
IGListExperimentNone = 1 << 1,
};
/**