Merge "don't block adb while running uninstall"
am: 17280c61d3
Change-Id: Ida023bd6f9ba2b309e9443561f9fae43afea15fb
This commit is contained in:
committed by
android-build-merger
commit
76ef10f320
@@ -77,7 +77,7 @@ import java.util.Collections;
|
||||
import java.util.Comparator;
|
||||
import java.util.List;
|
||||
import java.util.WeakHashMap;
|
||||
import java.util.concurrent.SynchronousQueue;
|
||||
import java.util.concurrent.LinkedBlockingQueue;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
class PackageManagerShellCommand extends ShellCommand {
|
||||
@@ -1750,7 +1750,7 @@ class PackageManagerShellCommand extends ShellCommand {
|
||||
}
|
||||
|
||||
private static class LocalIntentReceiver {
|
||||
private final SynchronousQueue<Intent> mResult = new SynchronousQueue<>();
|
||||
private final LinkedBlockingQueue<Intent> mResult = new LinkedBlockingQueue<>();
|
||||
|
||||
private IIntentSender.Stub mLocalSender = new IIntentSender.Stub() {
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user