Fixing bug 326358. checking for null mStringBundle is not needed. r/a=kaie

This commit is contained in:
dougt%meer.net 2006-02-09 18:52:28 +00:00
Родитель 90ac486dd5
Коммит a58511b4cd
1 изменённых файлов: 7 добавлений и 3 удалений

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

@ -194,9 +194,13 @@ nsSecureBrowserUIImpl::Init(nsIDOMWindow *window)
nsCOMPtr<nsIStringBundleService> service(do_GetService(NS_STRINGBUNDLE_CONTRACTID, &rv));
if (NS_FAILED(rv)) return rv;
rv = service->CreateBundle(SECURITY_STRING_BUNDLE_URL,
getter_AddRefs(mStringBundle));
if (NS_FAILED(rv)) return rv;
// We do not need to test for mStringBundle here...
// Anywhere we use it, we will test before using. Some
// embedded users of PSM may want to reuse our
// nsSecureBrowserUIImpl implementation without the
// bundle.
service->CreateBundle(SECURITY_STRING_BUNDLE_URL, getter_AddRefs(mStringBundle));
// hook up to the form post notifications:
nsCOMPtr<nsIObserverService> svc(do_GetService("@mozilla.org/observer-service;1", &rv));