mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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:
committed by
Facebook GitHub Bot
parent
0f39a1076d
commit
83116e34bc
+3
-3
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user