Skip to content

Commit

Permalink
More tests for FabricUIManagerModule
Browse files Browse the repository at this point in the history
Reviewed By: mdvacca

Differential Revision: D7045459

fbshipit-source-id: f96758cf04b41836f73b29e62d43a122d955c67a
  • Loading branch information
ayc1 authored and facebook-github-bot committed Feb 22, 2018
1 parent edb6ca7 commit cf0193f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,9 @@ public final ReactShadowNodeImpl removeNativeChildAt(int i) {
@Override
public final void removeAllChildren() {
removeAllNativeChildren();
mChildren.clear();
if (mChildren != null) {
mChildren.clear();
}
}

@Override
Expand Down

0 comments on commit cf0193f

Please sign in to comment.