Include PreAllocateViewMountItem into the eager initialization of Fabric classes

Summary: simple diff to eager initialize the PreAllocateViewMountItem class with the rest of the Fabric classes

Reviewed By: sahrens

Differential Revision: D13860612

fbshipit-source-id: d1fbc653420c1c1546bbf605c682ad5bb611d76b
This commit is contained in:
David Vacca
2019-01-30 00:11:35 -08:00
committed by Facebook Github Bot
parent 16a6e51045
commit 6feb3dc837

View File

@@ -22,6 +22,7 @@ import com.facebook.react.fabric.mounting.mountitems.DeleteMountItem;
import com.facebook.react.fabric.mounting.mountitems.DispatchCommandMountItem;
import com.facebook.react.fabric.mounting.mountitems.InsertMountItem;
import com.facebook.react.fabric.mounting.mountitems.MountItem;
import com.facebook.react.fabric.mounting.mountitems.PreAllocateViewMountItem;
import com.facebook.react.fabric.mounting.mountitems.RemoveMountItem;
import com.facebook.react.fabric.mounting.mountitems.UpdateEventEmitterMountItem;
import com.facebook.react.fabric.mounting.mountitems.UpdateLayoutMountItem;
@@ -110,5 +111,6 @@ public class FabricJSIModuleProvider implements JSIModuleProvider<UIManager> {
EventBeatManager.class.getClass();
EventEmitterWrapper.class.getClass();
FabricSoLoader.class.getClass();
PreAllocateViewMountItem.class.getClass();
}
}