diff --git a/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountingManager.java b/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountingManager.java index 47d6582698f53b..3c33450fc14860 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountingManager.java +++ b/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountingManager.java @@ -455,15 +455,6 @@ public void deleteView(int reactTag) { View view = viewState.mView; if (view != null) { - ViewParent parentView = view.getParent(); - - if (parentView != null) { - ReactSoftException.logSoftException( - TAG, - new IllegalStateException( - "Warning: Deleting view that is still attached to parent: [" + reactTag + "]")); - } - dropView(view); } else { mTagToViewState.remove(reactTag);