diff options
| author | Dianne Hackborn <hackbod@google.com> | 2009-10-05 16:04:51 -0700 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2009-10-05 16:04:51 -0700 |
| commit | 4bc6158d6bdeff796cfd61d489c01db0d203534c (patch) | |
| tree | 4719b9c94530454090902532d98559265eef2bbd /cmds | |
| parent | 5903a83df1ebca83ce1e9a05f11a21701db48692 (diff) | |
| parent | baad552dfd6e9d244659e7509ff958ec8f449c03 (diff) | |
| download | frameworks_base-4bc6158d6bdeff796cfd61d489c01db0d203534c.zip frameworks_base-4bc6158d6bdeff796cfd61d489c01db0d203534c.tar.gz frameworks_base-4bc6158d6bdeff796cfd61d489c01db0d203534c.tar.bz2 | |
am baad552d: am 68d881cf: Fix issue #2166755: BroadcastReceiver trying to return result during a non-ordered broadcast
Merge commit 'baad552dfd6e9d244659e7509ff958ec8f449c03' into eclair-mr2-plus-aosp
* commit 'baad552dfd6e9d244659e7509ff958ec8f449c03':
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.java | 3 |
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; |
