Correct error message in getViewState method

Summary:
Changelog: [internal]

Here, getting `viewState` has failed, not its view property.

Reviewed By: mdvacca

Differential Revision: D30042652

fbshipit-source-id: 42831b577f17db1f64860e68be33870f5be27207
This commit is contained in:
Samuel Susla
2021-08-02 09:36:33 -07:00
committed by Facebook GitHub Bot
parent cb0e1d603a
commit 3ed3d34987
@@ -932,7 +932,7 @@ public class SurfaceMountingManager {
private ViewState getViewState(int tag) {
ViewState viewState = mTagToViewState.get(tag);
if (viewState == null) {
throw new RetryableMountingLayerException("Unable to find viewState view for tag " + tag);
throw new RetryableMountingLayerException("Unable to find viewState for tag " + tag);
}
return viewState;
}