Remove duplicated check ror to-be-restored tab

This commit is contained in:
YUKI Hiroshi 2014-09-30 16:46:33 +09:00
parent e3c589406d
commit b7389dd744

View File

@ -6628,7 +6628,6 @@ TreeStyleTabBrowser.prototype = inherit(TreeStyleTabWindow.prototype, {
tabs = tabs.filter(function(aTab) { tabs = tabs.filter(function(aTab) {
return ( return (
utils.isTabNotRestoredYet(aTab) && utils.isTabNotRestoredYet(aTab) &&
aTab.linkedBrowser.__treestyletab__toBeRestored &&
(!onlyVisible || !aTab.hidden) (!onlyVisible || !aTab.hidden)
); );
}); });