Disable collapsing of mounting instructions

Summary:
Disable collapsing of mounting instructions

Changelog: [internal]

Reviewed By: JoshuaGross

Differential Revision: D18387365

fbshipit-source-id: dbb6325297ef73d902fbe519726accd40a78b559
This commit is contained in:
David Vacca
2019-11-07 18:24:31 -08:00
committed by Facebook Github Bot
parent b0610d4fd3
commit 2d40369237
@@ -236,7 +236,9 @@ void Binding::installFabricUIManager(
// Keep reference to config object and cache some feature flags here
reactNativeConfig_ = config;
shouldCollateRemovesAndDeletes_ = reactNativeConfig_->getBool("react_fabric:enable_removedelete_collation_android");
collapseDeleteCreateMountingInstructions_ = reactNativeConfig_->getBool("react_fabric:enabled_collapse_delete_create_mounting_instructions");
// TODO T56932267: re-enable collapsing of mounting instructions using
// reactNativeConfig_->getBool("react_fabric:enabled_collapse_delete_create_mounting_instructions");
collapseDeleteCreateMountingInstructions_ = false;
disablePreallocateViews_ = reactNativeConfig_->getBool("react_fabric:disabled_view_preallocation_android");