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:34:03 -07:00 коммит произвёл Facebook GitHub Bot
Родитель cb0e1d603a
Коммит 3ed3d34987
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
}