Merge "Improve error message in WMS#isInTouchMode" into udc-dev

This commit is contained in:
Antonio Kantek
2023-05-02 23:35:05 +00:00
committed by Android (Google) Code Review

View File

@@ -3915,8 +3915,9 @@ public class WindowManagerService extends IWindowManager.Stub
synchronized (mGlobalLock) {
final DisplayContent displayContent = mRoot.getDisplayContent(displayId);
if (displayContent == null) {
throw new IllegalStateException("No touch mode is defined for displayId {"
+ displayId + "}");
throw new IllegalStateException("Failed to retrieve the touch mode state for"
+ "display {" + displayId + "}: display is not registered in "
+ "WindowRootContainer");
}
return displayContent.isInTouchMode();
}