diff options
author | Dianne Hackborn <hackbod@google.com> | 2012-09-04 11:08:43 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2012-09-04 11:08:43 -0700 |
commit | 52fba38f7d155e22e7487fc173243b4df2a9e76a (patch) | |
tree | 7b5e68bf029e89086643f812bcbf3a88acbedc98 /cmds/am | |
parent | 7d69e8bd2168a81a5cb68da99d025c6f290bf166 (diff) | |
download | frameworks_base-52fba38f7d155e22e7487fc173243b4df2a9e76a.zip frameworks_base-52fba38f7d155e22e7487fc173243b4df2a9e76a.tar.gz frameworks_base-52fba38f7d155e22e7487fc173243b4df2a9e76a.tar.bz2 |
Fix build.
Change-Id: I15592889b8679d946e402dcfdeb124df349cbd4d
Diffstat (limited to 'cmds/am')
-rw-r--r-- | cmds/am/src/com/android/commands/am/Am.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmds/am/src/com/android/commands/am/Am.java b/cmds/am/src/com/android/commands/am/Am.java index 7f3dbe5..f7b4f60 100644 --- a/cmds/am/src/com/android/commands/am/Am.java +++ b/cmds/am/src/com/android/commands/am/Am.java @@ -1181,9 +1181,9 @@ public class Am { private class IntentReceiver extends IIntentReceiver.Stub { private boolean mFinished = false; - public synchronized void performReceive( - Intent intent, int rc, String data, Bundle ext, boolean ord, - boolean sticky) { + @Override + public void performReceive(Intent intent, int resultCode, String data, Bundle extras, + boolean ordered, boolean sticky, int sendingUser) throws RemoteException { String line = "Broadcast completed: result=" + rc; if (data != null) line = line + ", data=\"" + data + "\""; if (ext != null) line = line + ", extras: " + ext; |