Bug 1688511 - do not use 'else' after 'return'. r=sylvestre

Differential Revision: https://phabricator.services.mozilla.com/D103970
This commit is contained in:
sachinchauhan2889@gmail.com 2021-02-04 09:24:19 +00:00
Родитель 12e78a4a8b
Коммит 9834c92a95
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -153,7 +153,8 @@ nsresult ResolveURI(nsIURI* in, nsIURI** out) {
NS_ENSURE_SUCCESS(rv, rv);
return ioService->NewURI(spec, nullptr, nullptr, out);
} else if (in->SchemeIs("chrome")) {
}
if (in->SchemeIs("chrome")) {
nsCOMPtr<nsIChromeRegistry> chromeReg =
mozilla::services::GetChromeRegistry();
if (!chromeReg) return NS_ERROR_UNEXPECTED;