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

Commit 8246e815 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android (Google) Code Review
Browse files

Merge "Whoops, wait around for pm result." into lmp-dev

parents 6b19a00d 5ab6e0ba
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);
            }
        }
    }