Cleanup old Fabric methods from ReactShadowNodeImpl

Summary: These methods and variables were used by Android implementation of Fabric, these are not used anymore.

Reviewed By: shergin

Differential Revision: D13108547

fbshipit-source-id: d169eb58ba20f3bfe117a124f0494ff3a4fb5dce
This commit is contained in:
David Vacca
2018-11-17 02:27:19 -08:00
committed by Facebook Github Bot
parent 560652cfe8
commit 74f6575f35
2 changed files with 1 additions and 71 deletions
@@ -94,8 +94,6 @@ public interface ReactShadowNode<T extends ReactShadowNode> {
void removeAndDisposeAllChildren();
@Nullable ReactStylesDiffMap getNewProps();
/**
* This method will be called by {@link UIManagerModule} once per batch, before calculating
* layout. Will be only called for nodes that are marked as updated with {@link #markUpdated()} or
@@ -348,12 +346,4 @@ public interface ReactShadowNode<T extends ReactShadowNode> {
boolean isMeasureDefined();
void dispose();
/**
* @return an immutable {@link List<ReactShadowNode>} containing the children of this
* {@link ReactShadowNode}.
*/
List<ReactShadowNode> getChildrenList();
void updateScreenLayout(ReactShadowNode prevNode);
}