mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Remove MC for runtime scheduler
Summary: Remove redundant feature flag. Changelog: [internal] Reviewed By: javache Differential Revision: D39382607 fbshipit-source-id: fb0292258e6722160a6a1104aa1c8e35a4281a15
This commit is contained in:
committed by
Facebook GitHub Bot
parent
56c28f3740
commit
9929eadcb4
@@ -108,7 +108,7 @@ public class CatalystInstanceImpl implements CatalystInstance {
|
||||
// C++ parts
|
||||
private final HybridData mHybridData;
|
||||
|
||||
private static native HybridData initHybrid(boolean enableRuntimeScheduler);
|
||||
private static native HybridData initHybrid();
|
||||
|
||||
public native CallInvokerHolderImpl getJSCallInvokerHolder();
|
||||
|
||||
@@ -123,7 +123,7 @@ public class CatalystInstanceImpl implements CatalystInstance {
|
||||
FLog.d(ReactConstants.TAG, "Initializing React Xplat Bridge.");
|
||||
Systrace.beginSection(TRACE_TAG_REACT_JAVA_BRIDGE, "createCatalystInstanceImpl");
|
||||
|
||||
mHybridData = initHybrid(ReactFeatureFlags.enableRuntimeScheduler);
|
||||
mHybridData = initHybrid();
|
||||
|
||||
mReactQueueConfiguration =
|
||||
ReactQueueConfigurationImpl.create(
|
||||
|
||||
@@ -70,8 +70,6 @@ public class ReactFeatureFlags {
|
||||
/** This feature flag enables logs for Fabric */
|
||||
public static boolean enableFabricLogs = false;
|
||||
|
||||
public static boolean enableRuntimeScheduler = false;
|
||||
|
||||
/** Feature flag to configure eager attachment of the root view/initialisation of the JS code */
|
||||
public static boolean enableEagerRootViewAttachment = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user