Bug 1314918 - Fix most of the remaining no-unused-vars issues for local scope in browser/. r=mossop

MozReview-Commit-ID: LdoXLniNeT7
This commit is contained in:
Mark Banner
2016-11-03 11:51:48 +00:00
parent ccedfdc012
commit 0dc78b7964
74 changed files with 83 additions and 158 deletions

View File

@@ -471,8 +471,6 @@ var gCookiesWindow = {
},
_makeCookieObject: function (aStrippedHost, aCookie) {
var host = aCookie.host;
var formattedHost = host.charAt(0) == "." ? host.substring(1, host.length) : host;
var c = { name : aCookie.name,
value : aCookie.value,
isDomain : aCookie.isDomain,