mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Remove ComponentRegistry class
Summary: This class is not necessary anymore, this diff deletes it from the repo Reviewed By: JoshuaGross Differential Revision: D15457346 fbshipit-source-id: c7293d93b50271efe3b3d2121c128ba6e13c7627
This commit is contained in:
committed by
Facebook Github Bot
parent
cb1a28c859
commit
c629cdc39a
@@ -1,25 +0,0 @@
|
||||
// Copyright 2004-present Facebook. All Rights Reserved.
|
||||
|
||||
package com.facebook.react.fabric;
|
||||
|
||||
import com.facebook.jni.HybridData;
|
||||
import com.facebook.proguard.annotations.DoNotStrip;
|
||||
import com.facebook.soloader.SoLoader;
|
||||
|
||||
@DoNotStrip
|
||||
public class ComponentRegistry {
|
||||
|
||||
static {
|
||||
FabricSoLoader.staticInit();
|
||||
}
|
||||
|
||||
private final HybridData mHybridData;
|
||||
|
||||
@DoNotStrip
|
||||
private static native HybridData initHybrid();
|
||||
|
||||
public ComponentRegistry() {
|
||||
mHybridData = initHybrid();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -115,7 +115,6 @@ public class FabricJSIModuleProvider implements JSIModuleProvider<UIManager> {
|
||||
ViewPool.class.getClass();
|
||||
Binding.class.getClass();
|
||||
ComponentFactoryDelegate.class.getClass();
|
||||
ComponentRegistry.class.getClass();
|
||||
EventBeatManager.class.getClass();
|
||||
EventEmitterWrapper.class.getClass();
|
||||
StateWrapperImpl.class.getClass();
|
||||
|
||||
Reference in New Issue
Block a user