Delete enableFabricInLogBox flag

Summary:
This diff deletes the ReactFeatureFlag enableFabricInLogBox, from now on Logbox will be rendered in Fabric when Fabric is enabled

changelog: [internal] internal

Reviewed By: genkikondo

Differential Revision: D33781626

fbshipit-source-id: 3187a22fec80125afd27860995637564640dab8d
This commit is contained in:
David Vacca 2022-01-27 17:02:08 -08:00 коммит произвёл Facebook GitHub Bot
Родитель ea90a76efe
Коммит 9abcea7e11
2 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -336,7 +336,7 @@ public class ReactInstanceManager {
Activity currentActivity = getCurrentActivity();
if (currentActivity != null) {
ReactRootView rootView = new ReactRootView(currentActivity);
rootView.setIsFabric(ReactFeatureFlags.enableFabricInLogBox);
rootView.setIsFabric(ReactFeatureFlags.enableFabricRenderer);
rootView.startReactApplication(ReactInstanceManager.this, appKey, null);
return rootView;
}

Просмотреть файл

@ -99,9 +99,6 @@ public class ReactFeatureFlags {
return useOverflowInset;
}
/** Enables Fabric for LogBox */
public static boolean enableFabricInLogBox = false;
public static boolean enableLockFreeEventDispatcher = false;
public static boolean enableAggressiveEventEmitterCleanup = false;