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

Commit 5a252673 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android Git Automerger
Browse files

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

* commit '193e05d90dca12a0a13df4ecf5bf62da6cd7f541':
  Whoops, wait around for pm result.
parents 5eeb4994 41159f31
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);
            }
        }
    }