summaryrefslogtreecommitdiff
path: root/common/modules/cache.jsm
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2015-02-21 21:59:37 -0800
committerKris Maglione <maglione.k@gmail.com>2015-02-21 21:59:37 -0800
commit7ee579200f5f49748418fc06b8c37cadea609610 (patch)
tree1c84cfea88ec62e18d1d499599354254bd372f83 /common/modules/cache.jsm
parent54f38d90d9539ef713035d8779d26964d657e996 (diff)
downloadpentadactyl-7ee579200f5f49748418fc06b8c37cadea609610.tar.gz
Fix all the things. And break most of the other things, in all likelihood.
Diffstat (limited to 'common/modules/cache.jsm')
-rw-r--r--common/modules/cache.jsm4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/modules/cache.jsm b/common/modules/cache.jsm
index 398d3c9d..fbb8013d 100644
--- a/common/modules/cache.jsm
+++ b/common/modules/cache.jsm
@@ -18,8 +18,8 @@ var Cache = Module("Cache", XPCOM(Ci.nsIRequestObserver), {
this.storage = storage.newMap("cache", { store: true });
this.providers = {};
this.globalProviders = this.providers;
- this.providing = RealSet();
- this.localProviders = RealSet();
+ this.providing = new RealSet;
+ this.localProviders = new RealSet;
if (JSMLoader.cacheFlush)
this.flush();