Fix lint in MountingManager

Summary: This fixes the lint that was broken by D16543439

Reviewed By: fkgozali

Differential Revision: D16607092

fbshipit-source-id: 70c3989d25f446ffe0877e58253acef5ada8e010
This commit is contained in:
David Vacca
2019-08-01 14:11:32 -07:00
committed by Facebook Github Bot
parent 094a9b585d
commit a84a62834c
@@ -183,9 +183,7 @@ public class MountingManager {
if (isLayoutable) {
viewManager = mViewManagerRegistry.get(componentName);
// View Managers are responsible for dealing with initial state and props.
view =
viewManager.createView(
themedReactContext, propsDiffMap, stateWrapper, null);
view = viewManager.createView(themedReactContext, propsDiffMap, stateWrapper, null);
view.setId(reactTag);
}