Skip to content

Commit b4597aa

Browse files
Dianne HackbornAndroid (Google) Code Review
authored andcommitted
Merge "Fix my fix." into jb-mr1-dev
2 parents a15bd8a + e2bdca5 commit b4597aa

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)