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

Commit 150e0e87 authored by Michael Wright's avatar Michael Wright Committed by Gerrit Code Review
Browse files

Merge "fix return value scale of notifyANR()"

parents 6a47a861 def340d4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ final class InputMonitor implements InputManagerService.WindowManagerCallbacks {
                if (timeout >= 0) {
                    // The activity manager declined to abort dispatching.
                    // Wait a bit longer and timeout again later.
                    return timeout;
                    return timeout * 1000000L; // nanoseconds
                }
            } catch (RemoteException ex) {
            }