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

Commit 83bbf977 authored by Shai Barack's avatar Shai Barack Committed by Android (Google) Code Review
Browse files

Merge "Improve TestLooperManager check on execute()" into main

parents 642503ab c1c8b4dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -159,7 +159,7 @@ public class TestLooperManager {
     */
    public void execute(Message message) {
        checkReleased();
        if (Looper.myLooper() == mLooper) {
        if (mLooper.isCurrentThread()) {
            // This is being called from the thread it should be executed on, we can just dispatch.
            message.target.dispatchMessage(message);
        } else {