Fix capitalization of ComponentFactory in RNTester

Summary:
This is a nit, but the capitalization of `ComponentFactory` is wrong
and should be lowercase. I'm fixing it.

Changelog:
[Internal] [Changed] - Fix capitalization of ComponentFactory in RNTester

Reviewed By: ShikaSD

Differential Revision: D32247341

fbshipit-source-id: e8a9f264139f20d85a8e00fad947b2c9465ef630
This commit is contained in:
Nicola Corti
2021-11-08 09:18:20 -08:00
committed by Facebook GitHub Bot
parent 0f39a1076d
commit 83116e34bc
@@ -139,8 +139,8 @@ public class RNTesterApplication extends Application implements ReactApplication
@Override
public JSIModuleProvider<UIManager> getJSIModuleProvider() {
final ComponentFactory ComponentFactory = new ComponentFactory();
CoreComponentsRegistry.register(ComponentFactory);
final ComponentFactory componentFactory = new ComponentFactory();
CoreComponentsRegistry.register(componentFactory);
final ReactInstanceManager reactInstanceManager = getReactInstanceManager();
ViewManagerRegistry viewManagerRegistry =
@@ -150,7 +150,7 @@ public class RNTesterApplication extends Application implements ReactApplication
return new FabricJSIModuleProvider(
reactApplicationContext,
ComponentFactory,
componentFactory,
// TODO: T71362667 add ReactNativeConfig's support in RNTester
new ReactNativeConfig() {
@Override