Skip to content

Commit 52fba38

Browse files
author
Dianne Hackborn
committed
Fix build.
Change-Id: I15592889b8679d946e402dcfdeb124df349cbd4d
1 parent 7d69e8b commit 52fba38

File tree

1 file changed

+3
-3
lines changed
  • cmds/am/src/com/android/commands/am

1 file changed

+3
-3
lines changed

cmds/am/src/com/android/commands/am/Am.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1181,9 +1181,9 @@ private void runToUri(boolean intentScheme) throws Exception {
11811181
private class IntentReceiver extends IIntentReceiver.Stub {
11821182
private boolean mFinished = false;
11831183

1184-
public synchronized void performReceive(
1185-
Intent intent, int rc, String data, Bundle ext, boolean ord,
1186-
boolean sticky) {
1184+
@Override
1185+
public void performReceive(Intent intent, int resultCode, String data, Bundle extras,
1186+
boolean ordered, boolean sticky, int sendingUser) throws RemoteException {
11871187
String line = "Broadcast completed: result=" + rc;
11881188
if (data != null) line = line + ", data=\"" + data + "\"";
11891189
if (ext != null) line = line + ", extras: " + ext;

0 commit comments

Comments
 (0)