fixed index out of bounds bug

This commit is contained in:
Anthony Restaino 2016-03-01 22:10:18 -05:00
parent 6308677438
commit 1198aeeb4d

View File

@ -1068,7 +1068,7 @@ public abstract class BrowserActivity extends ThemableBrowserActivity implements
mTabsManager.shutdown(); mTabsManager.shutdown();
mCurrentView = null; mCurrentView = null;
for (int n = 0; n < size; n++) { for (int n = 0; n < size; n++) {
mTabsView.tabRemoved(n); mTabsView.tabRemoved(0);
} }
finish(); finish();
} }