Bug 1684637 - CacheFile.cpp: do not use 'else' after 'return' r=necko-reviewers,dragana

Differential Revision: https://phabricator.services.mozilla.com/D101749
This commit is contained in:
Deepali Garg 2021-01-15 13:14:02 +00:00
Родитель 6bdc6718ef
Коммит 4ca397e7fd
1 изменённых файлов: 61 добавлений и 62 удалений

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

@ -227,7 +227,7 @@ nsresult CacheFile::Init(const nsACString& aKey, bool aCreateNew,
mReady = true;
mDataSize = mMetadata->Offset();
return NS_OK;
} else {
}
uint32_t flags;
if (aCreateNew) {
MOZ_ASSERT(!aCallback);
@ -295,7 +295,6 @@ nsresult CacheFile::Init(const nsACString& aKey, bool aCreateNew,
NS_ENSURE_SUCCESS(rv, rv);
}
}
}
return NS_OK;
}