зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1156722 - Use destructuring instead of [].shift() r=smacleod
This commit is contained in:
Родитель
445063d439
Коммит
fd71ad4984
|
@ -1699,7 +1699,7 @@ let SessionStoreInternal = {
|
|||
}
|
||||
|
||||
// fetch the data of closed tab, while removing it from the array
|
||||
let closedTab = closedTabs.splice(aIndex, 1).shift();
|
||||
let [closedTab] = closedTabs.splice(aIndex, 1);
|
||||
let closedTabState = closedTab.state;
|
||||
|
||||
// create a new tab
|
||||
|
|
Загрузка…
Ссылка в новой задаче