Bug 1401236 - Don't reread already loaded data in `JSONFile#load`. r=Gijs

MozReview-Commit-ID: AHD5G453GHM

--HG--
extra : rebase_source : a3787ad99b167c4ff38e82540e3e36d7d8d28734
This commit is contained in:
Kit Cambridge 2017-09-19 09:59:27 -07:00
Родитель 9914e60252
Коммит 43440ab4cd
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -178,6 +178,10 @@ JSONFile.prototype = {
* if there is no dataPostProcessor.
*/
async load() {
if (this.dataReady) {
return;
}
let data = {};
try {