summaryrefslogtreecommitdiffstats
path: root/cmds
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2009-10-12 11:34:00 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2009-10-12 11:34:00 -0700
commit9809d5149b883315c73aef197200eb9758d34134 (patch)
treeda9abce3d6e8159f61efee8701f7f0c7d4e16ada /cmds
parent13683ab7d4c59c242d44f56f0e1576fee0b20976 (diff)
parent4bc6158d6bdeff796cfd61d489c01db0d203534c (diff)
downloadframeworks_base-9809d5149b883315c73aef197200eb9758d34134.zip
frameworks_base-9809d5149b883315c73aef197200eb9758d34134.tar.gz
frameworks_base-9809d5149b883315c73aef197200eb9758d34134.tar.bz2
am 4bc6158d: am baad552d: am 68d881cf: Fix issue #2166755: BroadcastReceiver trying to return result during a non-ordered broadcast
Merge commit '4bc6158d6bdeff796cfd61d489c01db0d203534c' * commit '4bc6158d6bdeff796cfd61d489c01db0d203534c': Fix issue #2166755: BroadcastReceiver trying to return result during a non-ordered broadcast
Diffstat (limited to 'cmds')
-rw-r--r--cmds/am/src/com/android/commands/am/Am.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmds/am/src/com/android/commands/am/Am.java b/cmds/am/src/com/android/commands/am/Am.java
index 0b4f25e..eca5af9 100644
--- a/cmds/am/src/com/android/commands/am/Am.java
+++ b/cmds/am/src/com/android/commands/am/Am.java
@@ -340,7 +340,8 @@ public class Am {
private boolean mFinished = false;
public synchronized void performReceive(
- Intent intent, int rc, String data, Bundle ext, boolean ord) {
+ Intent intent, int rc, String data, Bundle ext, boolean ord,
+ boolean sticky) {
String line = "Broadcast completed: result=" + rc;
if (data != null) line = line + ", data=\"" + data + "\"";
if (ext != null) line = line + ", extras: " + ext;