Skip to content

Commit

Permalink
activity manager bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
XinYiWorld committed May 16, 2017
1 parent 5ce894e commit 04a3b16
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,8 @@ public void finishAllActivityExcept(Class<?> cls) {
for (int i = 0, size = activityStack.size(); i < size; i++) {
if (null != activityStack.get(i) && !activityStack.get(i).getClass().equals(cls)) {
finishActivity(activityStack.get(i));
break;
}
}
activityStack.clear();
}

/**
Expand Down

0 comments on commit 04a3b16

Please sign in to comment.