@@ -31,7 +31,6 @@ import ReactSharedInternals from 'shared/ReactSharedInternals';
3131import {
3232 enableDebugTracing ,
3333 enableSchedulingProfiler ,
34- enableNewReconciler ,
3534 enableCache ,
3635 enableUseRefAccessWarning ,
3736 enableLazyContextPropagation ,
@@ -2758,8 +2757,6 @@ export const ContextOnlyDispatcher: Dispatcher = {
27582757 useMutableSource : throwInvalidHookError ,
27592758 useSyncExternalStore : throwInvalidHookError ,
27602759 useId : throwInvalidHookError ,
2761-
2762- unstable_isNewReconciler : enableNewReconciler ,
27632760} ;
27642761if (enableCache) {
27652762 ( ContextOnlyDispatcher : Dispatcher ) . useCacheRefresh = throwInvalidHookError ;
@@ -2793,8 +2790,6 @@ const HooksDispatcherOnMount: Dispatcher = {
27932790 useMutableSource : mountMutableSource ,
27942791 useSyncExternalStore : mountSyncExternalStore ,
27952792 useId : mountId ,
2796-
2797- unstable_isNewReconciler : enableNewReconciler ,
27982793} ;
27992794if (enableCache) {
28002795 // $FlowFixMe[escaped-generic] discovered when updating Flow
@@ -2828,8 +2823,6 @@ const HooksDispatcherOnUpdate: Dispatcher = {
28282823 useMutableSource : updateMutableSource ,
28292824 useSyncExternalStore : updateSyncExternalStore ,
28302825 useId : updateId ,
2831-
2832- unstable_isNewReconciler : enableNewReconciler ,
28332826} ;
28342827if (enableCache) {
28352828 ( HooksDispatcherOnUpdate : Dispatcher ) . useCacheRefresh = updateRefresh ;
@@ -2863,8 +2856,6 @@ const HooksDispatcherOnRerender: Dispatcher = {
28632856 useMutableSource : updateMutableSource ,
28642857 useSyncExternalStore : updateSyncExternalStore ,
28652858 useId : updateId ,
2866-
2867- unstable_isNewReconciler : enableNewReconciler ,
28682859} ;
28692860if (enableCache) {
28702861 ( HooksDispatcherOnRerender : Dispatcher ) . useCacheRefresh = updateRefresh ;
@@ -3041,8 +3032,6 @@ if (__DEV__) {
30413032 mountHookTypesDev ( ) ;
30423033 return mountId ( ) ;
30433034 } ,
3044-
3045- unstable_isNewReconciler: enableNewReconciler,
30463035 } ;
30473036 if ( enableCache ) {
30483037 ( HooksDispatcherOnMountInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
@@ -3198,8 +3187,6 @@ if (__DEV__) {
31983187 updateHookTypesDev ( ) ;
31993188 return mountId ( ) ;
32003189 } ,
3201-
3202- unstable_isNewReconciler: enableNewReconciler,
32033190 } ;
32043191 if ( enableCache ) {
32053192 ( HooksDispatcherOnMountWithHookTypesInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
@@ -3355,8 +3342,6 @@ if (__DEV__) {
33553342 updateHookTypesDev ( ) ;
33563343 return updateId ( ) ;
33573344 } ,
3358-
3359- unstable_isNewReconciler: enableNewReconciler,
33603345 } ;
33613346 if ( enableCache ) {
33623347 ( HooksDispatcherOnUpdateInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
@@ -3513,8 +3498,6 @@ if (__DEV__) {
35133498 updateHookTypesDev ( ) ;
35143499 return updateId ( ) ;
35153500 } ,
3516-
3517- unstable_isNewReconciler: enableNewReconciler,
35183501 } ;
35193502 if ( enableCache ) {
35203503 ( HooksDispatcherOnRerenderInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
@@ -3687,8 +3670,6 @@ if (__DEV__) {
36873670 mountHookTypesDev ( ) ;
36883671 return mountId ( ) ;
36893672 } ,
3690-
3691- unstable_isNewReconciler: enableNewReconciler,
36923673 } ;
36933674 if ( enableCache ) {
36943675 ( InvalidNestedHooksDispatcherOnMountInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
@@ -3872,8 +3853,6 @@ if (__DEV__) {
38723853 updateHookTypesDev ( ) ;
38733854 return updateId ( ) ;
38743855 } ,
3875-
3876- unstable_isNewReconciler: enableNewReconciler,
38773856 } ;
38783857 if ( enableCache ) {
38793858 ( InvalidNestedHooksDispatcherOnUpdateInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
@@ -4058,8 +4037,6 @@ if (__DEV__) {
40584037 updateHookTypesDev ( ) ;
40594038 return updateId ( ) ;
40604039 } ,
4061-
4062- unstable_isNewReconciler: enableNewReconciler,
40634040 } ;
40644041 if ( enableCache ) {
40654042 ( InvalidNestedHooksDispatcherOnRerenderInDEV : Dispatcher ) . useCacheRefresh = function useCacheRefresh ( ) {
0 commit comments