Bug 507883 - addCookieToHash() creates a useless object that will be clobbered right away. r=zeniko

This commit is contained in:
Dão Gottwald 2009-08-02 18:31:24 +02:00
parent e991459e39
commit cc08681d32

View File

@ -1594,9 +1594,6 @@ SessionStoreService.prototype = {
aHash[aHost] = {};
if (!aHash[aHost][aPath])
aHash[aHost][aPath] = {};
if (!aHash[aHost][aPath][aName])
aHash[aHost][aPath][aName] = {};
aHash[aHost][aPath][aName] = aCookie;
}