File tree Expand file tree Collapse file tree 4 files changed +1
-7
lines changed
packages/react-native/ReactAndroid
src/main/java/com/facebook/react Expand file tree Collapse file tree 4 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -1927,7 +1927,6 @@ public class com/facebook/react/config/ReactFeatureFlags {
1927
1927
public static field enableCppPropsIteratorSetter Z
1928
1928
public static field enableEagerRootViewAttachment Z
1929
1929
public static field enableFabricLogs Z
1930
- public static field enableFabricPendingEventQueue Z
1931
1930
public static field enableFabricRenderer Z
1932
1931
public static field enableFabricRendererExclusively Z
1933
1932
public static field enableRemoveDeleteTreeInstruction Z
Original file line number Diff line number Diff line change @@ -83,9 +83,6 @@ public class ReactFeatureFlags {
83
83
/** Feature Flag to enable a cache of Spannable objects used by TextLayoutManagerMapBuffer */
84
84
public static boolean enableTextSpannableCache = false ;
85
85
86
- /** Feature Flag to enable the pending event queue in fabric before mounting views */
87
- public static boolean enableFabricPendingEventQueue = false ;
88
-
89
86
/**
90
87
* Feature Flag to enable View Recycling. When enabled, individual ViewManagers must still opt-in.
91
88
*/
Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ public object DefaultNewArchitectureEntryPoint {
44
44
ReactFeatureFlags .unstable_useFabricInterop = fabricEnabled
45
45
ReactFeatureFlags .enableBridgelessArchitecture = bridgelessEnabled
46
46
ReactFeatureFlags .unstable_useTurboModuleInterop = bridgelessEnabled
47
- ReactFeatureFlags .enableFabricPendingEventQueue = fabricEnabled
48
47
49
48
if (bridgelessEnabled) {
50
49
ReactNativeFeatureFlags .override (
Original file line number Diff line number Diff line change @@ -978,8 +978,7 @@ public void receiveEvent(
978
978
979
979
EventEmitterWrapper eventEmitter = mMountingManager .getEventEmitter (surfaceId , reactTag );
980
980
if (eventEmitter == null ) {
981
- if (ReactFeatureFlags .enableFabricPendingEventQueue
982
- && mMountingManager .getViewExists (reactTag )) {
981
+ if (mMountingManager .getViewExists (reactTag )) {
983
982
// The view is preallocated and created. However, it hasn't been mounted yet. We will have
984
983
// access to the event emitter later when the view is mounted. For now just save the event
985
984
// in the view state and trigger it later.
You can’t perform that action at this time.
0 commit comments