Skip to content

Commit e2bdca5

Browse files
author
Dianne Hackborn
committed
Fix my fix.
Change-Id: I35fce760f8d91fceb554d372e7423749a4ac6d2d
1 parent 52fba38 commit e2bdca5

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1184,9 +1184,9 @@ private class IntentReceiver extends IIntentReceiver.Stub {
11841184
@Override
11851185
public void performReceive(Intent intent, int resultCode, String data, Bundle extras,
11861186
boolean ordered, boolean sticky, int sendingUser) throws RemoteException {
1187-
String line = "Broadcast completed: result=" + rc;
1187+
String line = "Broadcast completed: result=" + resultCode;
11881188
if (data != null) line = line + ", data=\"" + data + "\"";
1189-
if (ext != null) line = line + ", extras: " + ext;
1189+
if (extras != null) line = line + ", extras: " + extras;
11901190
System.out.println(line);
11911191
mFinished = true;
11921192
notifyAll();

0 commit comments

Comments
 (0)