diff --git a/packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.h b/packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.h index 2130bb136ac..1ef120d83dc 100644 --- a/packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.h +++ b/packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.h @@ -65,11 +65,6 @@ - (void)installJSBindings:(facebook::jsi::Runtime &)runtime; -/** - * @deprecated: use installJSBindings instead - */ -- (void)installJSBindingWithRuntimeExecutor:(facebook::react::RuntimeExecutor &)runtimeExecutor; - - (void)invalidate; @end diff --git a/packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.mm b/packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.mm index 283eb4a2be8..6c6570b842b 100644 --- a/packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.mm +++ b/packages/react-native/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModuleManager.mm @@ -962,17 +962,6 @@ static Class getFallbackClassFromName(const char *name) } } -/** - * @deprecated: use installJSBindings instead - */ -- (void)installJSBindingWithRuntimeExecutor:(facebook::react::RuntimeExecutor &)runtimeExecutor -{ - // jsi::Runtime doesn't exist when attached to Chrome debugger. - if (runtimeExecutor) { - runtimeExecutor([self](facebook::jsi::Runtime &runtime) { [self installJSBindings:runtime]; }); - } -} - #pragma mark RCTTurboModuleRegistry - (id)moduleForName:(const char *)moduleName