Add missing semicolon. No bug.

This commit is contained in:
Reed Loden 2010-06-25 18:45:11 -05:00
parent d423986af9
commit b2dc7394dc

View File

@ -360,7 +360,7 @@ function BuildConditionSandbox(aURL) {
},
_prefs: prefs,
getBoolPref: function(p) { return this._prefs.getBoolPref(p); },
getIntPref: function(p) { return this._prefs.getIntPref(p) }
getIntPref: function(p) { return this._prefs.getIntPref(p); }
}
return sandbox;