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

Commit 3d516aaa authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android Git Automerger
Browse files

am 6abc3ef8: Merge "Whoops, wait around for pm result." into lmp-dev

* commit '6abc3ef8382b4cd6ca0049554bff4345de05315d':
  Whoops, wait around for pm result.
parents 1d4160ab 8246e815
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -1702,7 +1702,11 @@ public final class Pm {
        }

        public Intent getResult() {
            return mResult.poll();
            try {
                return mResult.take();
            } catch (InterruptedException e) {
                throw new RuntimeException(e);
            }
        }
    }