summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiva Velusamy <vsiva@google.com>2012-03-12 18:40:32 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-12 18:40:32 -0700
commita8178c30e02f3a3f4183e459fc96b6e34c93c7c6 (patch)
treec57d89bda191825c17c411585104d55db8843498
parentbc275ffc13e8c4e29ec08354c80a55df567dbab3 (diff)
parent99cefef224f4ceaa1130adce86b74f9a50f6766d (diff)
downloadextras-a8178c30e02f3a3f4183e459fc96b6e34c93c7c6.tar.gz
Merge "Fix # of arguments to startActivity"
-rw-r--r--bugmailer/src/com/android/commands/sendbug/SendBug.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bugmailer/src/com/android/commands/sendbug/SendBug.java b/bugmailer/src/com/android/commands/sendbug/SendBug.java
index 41a550a3..ac4fc327 100644
--- a/bugmailer/src/com/android/commands/sendbug/SendBug.java
+++ b/bugmailer/src/com/android/commands/sendbug/SendBug.java
@@ -72,7 +72,7 @@ public class SendBug {
final IActivityManager mAm = ActivityManagerNative.getDefault();
try {
mAm.startActivity(null, intent, intent.getType(), null, 0, null, null, 0, false,
- false, null, null, false);
+ false, false, null, null, false);
} catch (RemoteException e) {
// ignore
}