Delete LazyReactPackage.getReactModuleInfoProviderViaReflection (#41096)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/41096

LazyReactPackage.getReactModuleInfoProviderViaReflection was deprecated in 0.72, I'm just deleting it.
There are no usages internally or externally

changelog: [Android][Breaking] Delete deprecated method LazyReactPackage.getReactModuleInfoProviderViaReflection

Reviewed By: arushikesarwani94

Differential Revision: D50338302

fbshipit-source-id: 02fe91d5da8d6f01b8d3852aced90034a1a5c8e8
This commit is contained in:
David Vacca
2023-10-27 11:13:09 -07:00
committed by Facebook GitHub Bot
parent bfc64f444e
commit 118e651bc2
@@ -29,12 +29,6 @@ import java.util.Map;
@Deprecated(since = "This class is deprecated, please use BaseReactPackage instead.")
public abstract class LazyReactPackage implements ReactPackage {
@Deprecated
public static ReactModuleInfoProvider getReactModuleInfoProviderViaReflection(
LazyReactPackage lazyReactPackage) {
return Collections::emptyMap;
}
/**
* We return an iterable
*