@@ -31,7 +31,6 @@ import ReactSharedInternals from 'shared/ReactSharedInternals';
31
31
import {
32
32
enableDebugTracing ,
33
33
enableSchedulingProfiler ,
34
- enableNewReconciler ,
35
34
enableCache ,
36
35
enableUseRefAccessWarning ,
37
36
enableLazyContextPropagation ,
@@ -2758,8 +2757,6 @@ export const ContextOnlyDispatcher: Dispatcher = {
2758
2757
useMutableSource : throwInvalidHookError ,
2759
2758
useSyncExternalStore : throwInvalidHookError ,
2760
2759
useId : throwInvalidHookError ,
2761
-
2762
- unstable_isNewReconciler : enableNewReconciler ,
2763
2760
} ;
2764
2761
if (enableCache) {
2765
2762
( ContextOnlyDispatcher : Dispatcher ) . useCacheRefresh = throwInvalidHookError ;
@@ -2793,8 +2790,6 @@ const HooksDispatcherOnMount: Dispatcher = {
2793
2790
useMutableSource : mountMutableSource ,
2794
2791
useSyncExternalStore : mountSyncExternalStore ,
2795
2792
useId : mountId ,
2796
-
2797
- unstable_isNewReconciler : enableNewReconciler ,
2798
2793
} ;
2799
2794
if (enableCache) {
2800
2795
// $FlowFixMe[escaped-generic] discovered when updating Flow
@@ -2828,8 +2823,6 @@ const HooksDispatcherOnUpdate: Dispatcher = {
2828
2823
useMutableSource : updateMutableSource ,
2829
2824
useSyncExternalStore : updateSyncExternalStore ,
2830
2825
useId : updateId ,
2831
-
2832
- unstable_isNewReconciler : enableNewReconciler ,
2833
2826
} ;
2834
2827
if (enableCache) {
2835
2828
( HooksDispatcherOnUpdate : Dispatcher ) . useCacheRefresh = updateRefresh ;
@@ -2863,8 +2856,6 @@ const HooksDispatcherOnRerender: Dispatcher = {
2863
2856
useMutableSource : updateMutableSource ,
2864
2857
useSyncExternalStore : updateSyncExternalStore ,
2865
2858
useId : updateId ,
2866
-
2867
- unstable_isNewReconciler : enableNewReconciler ,
2868
2859
} ;
2869
2860
if (enableCache) {
2870
2861
( HooksDispatcherOnRerender : Dispatcher ) . useCacheRefresh = updateRefresh ;
@@ -3041,8 +3032,6 @@ if (__DEV__) {
3041
3032
mountHookTypesDev ( ) ;
3042
3033
return mountId ( ) ;
3043
3034
} ,
3044
-
3045
- unstable_isNewReconciler: enableNewReconciler,
3046
3035
} ;
3047
3036
if ( enableCache ) {
3048
3037
( HooksDispatcherOnMountInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
@@ -3198,8 +3187,6 @@ if (__DEV__) {
3198
3187
updateHookTypesDev ( ) ;
3199
3188
return mountId ( ) ;
3200
3189
} ,
3201
-
3202
- unstable_isNewReconciler: enableNewReconciler,
3203
3190
} ;
3204
3191
if ( enableCache ) {
3205
3192
( HooksDispatcherOnMountWithHookTypesInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
@@ -3355,8 +3342,6 @@ if (__DEV__) {
3355
3342
updateHookTypesDev ( ) ;
3356
3343
return updateId ( ) ;
3357
3344
} ,
3358
-
3359
- unstable_isNewReconciler: enableNewReconciler,
3360
3345
} ;
3361
3346
if ( enableCache ) {
3362
3347
( HooksDispatcherOnUpdateInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
@@ -3513,8 +3498,6 @@ if (__DEV__) {
3513
3498
updateHookTypesDev ( ) ;
3514
3499
return updateId ( ) ;
3515
3500
} ,
3516
-
3517
- unstable_isNewReconciler: enableNewReconciler,
3518
3501
} ;
3519
3502
if ( enableCache ) {
3520
3503
( HooksDispatcherOnRerenderInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
@@ -3687,8 +3670,6 @@ if (__DEV__) {
3687
3670
mountHookTypesDev ( ) ;
3688
3671
return mountId ( ) ;
3689
3672
} ,
3690
-
3691
- unstable_isNewReconciler: enableNewReconciler,
3692
3673
} ;
3693
3674
if ( enableCache ) {
3694
3675
( InvalidNestedHooksDispatcherOnMountInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
@@ -3872,8 +3853,6 @@ if (__DEV__) {
3872
3853
updateHookTypesDev ( ) ;
3873
3854
return updateId ( ) ;
3874
3855
} ,
3875
-
3876
- unstable_isNewReconciler: enableNewReconciler,
3877
3856
} ;
3878
3857
if ( enableCache ) {
3879
3858
( InvalidNestedHooksDispatcherOnUpdateInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
@@ -4058,8 +4037,6 @@ if (__DEV__) {
4058
4037
updateHookTypesDev ( ) ;
4059
4038
return updateId ( ) ;
4060
4039
} ,
4061
-
4062
- unstable_isNewReconciler: enableNewReconciler,
4063
4040
} ;
4064
4041
if ( enableCache ) {
4065
4042
( InvalidNestedHooksDispatcherOnRerenderInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
0 commit comments