From cd6f8bce2abc5ee68be453b1cd06413a04662f5b Mon Sep 17 00:00:00 2001 From: Ryan Nystrom Date: Thu, 3 Nov 2016 16:27:20 -0700 Subject: [PATCH] Remove reload data experiment Summary: Another experiment with neutral results. Removing. Reviewed By: jessesquires Differential Revision: D4127194 fbshipit-source-id: cdafca161e0fec95cb35baad446929a03bb1cf4c --- Source/IGListAdapter.m | 4 ---- Source/IGListExperiments.h | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) 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, }; /**