Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e3b51ef0 authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android Git Automerger
Browse files

am 324cfc54: Merge "Accessibility layer in inconsistent state after running UI...

am 324cfc54: Merge "Accessibility layer in inconsistent state after running UI test automation tests." into jb-mr1-dev

* commit '324cfc54':
  Accessibility layer in inconsistent state after running UI test automation tests.
parents c57f0d3e 324cfc54
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -558,8 +558,9 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub {
    public void unregisterUiTestAutomationService(IAccessibilityServiceClient serviceClient) {
        synchronized (mLock) {
            // Automation service is not bound, so pretend it died to perform clean up.
            if (mUiAutomationService != null
                    && mUiAutomationService.mServiceInterface == serviceClient) {
            if (mUiAutomationService != null && mUiAutomationService.mServiceInterface != null
                    && serviceClient != null && mUiAutomationService.mServiceInterface
                            .asBinder() == serviceClient.asBinder()) {
                mUiAutomationService.binderDied();
            }
        }