mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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:
committed by
Facebook GitHub Bot
parent
cb0e1d603a
commit
3ed3d34987
+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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user