Merge "Fixed the monkey option - killProcessAfterError is not beging checked in ANR. bug#3146736" into honeycomb

This commit is contained in:
Yu Shan Emily Lau
2011-01-20 10:21:37 -08:00
committed by Android (Google) Code Review

View File

@@ -337,9 +337,8 @@ public class Monkey {
synchronized (Monkey.this) {
mAbort = true;
}
return (mKillProcessAfterError) ? -1 : 1;
}
return 1;
return (mKillProcessAfterError) ? -1 : 1;
}
}