Skip to content

Commit

Permalink
Fix leak in Nodes due to removeClippedSubviews
Browse files Browse the repository at this point in the history
Reviewed By: astreet

Differential Revision: D3337513

fbshipit-source-id: b7b798f024488cd19cdcf93aee7f99eed512dd6a
  • Loading branch information
Ahmed El-Helw authored and Facebook Github Bot 8 committed May 24, 2016
1 parent 0a02716 commit caa2bae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ protected final void addRootViewGroup(
/**
* Releases all references to given native View.
*/
protected final void dropView(View view) {
protected void dropView(View view) {
UiThreadUtil.assertOnUiThread();
if (!mRootTags.get(view.getId())) {
// For non-root views we notify viewmanager with {@link ViewManager#onDropInstance}
Expand Down

0 comments on commit caa2bae

Please sign in to comment.