Merge "Fix back popping the back stack too much."

This commit is contained in:
Dianne Hackborn
2010-08-11 22:40:53 -07:00
committed by Android (Google) Code Review

View File

@@ -2072,7 +2072,7 @@ public class Activity extends ContextThemeWrapper
* to pop, else false.
*/
public boolean popBackStack() {
return popBackStack(null, -1);
return popBackStack(null, 0);
}
/**