mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-22 02:09:28 +00:00
Remove incorrect nulling out of members that duplicates the correct code in Shutdown. (Bug 652385) r=bzbarsky
This commit is contained in:
parent
5fba39075d
commit
f0c3913fba
@ -193,12 +193,6 @@ nsLayoutStylesheetCache::nsLayoutStylesheetCache()
|
||||
NS_ASSERTION(mQuirkSheet, "Could not load quirk.css");
|
||||
}
|
||||
|
||||
nsLayoutStylesheetCache::~nsLayoutStylesheetCache()
|
||||
{
|
||||
gCSSLoader = nsnull;
|
||||
gStyleCache = nsnull;
|
||||
}
|
||||
|
||||
void
|
||||
nsLayoutStylesheetCache::EnsureGlobal()
|
||||
{
|
||||
|
@ -69,7 +69,7 @@ class nsLayoutStylesheetCache
|
||||
|
||||
private:
|
||||
nsLayoutStylesheetCache();
|
||||
~nsLayoutStylesheetCache();
|
||||
~nsLayoutStylesheetCache() {}
|
||||
|
||||
static void EnsureGlobal();
|
||||
void InitFromProfile();
|
||||
|
Loading…
x
Reference in New Issue
Block a user