| Index: lib/utils.js |
| =================================================================== |
| --- a/lib/utils.js |
| +++ b/lib/utils.js |
| @@ -50,17 +50,17 @@ let Utils = exports.Utils = |
| /** |
| * Returns whether we are running in Fennec, for Fennec-specific hacks |
| * @type Boolean |
| */ |
| get isFennec() |
| { |
| let {application} = require("info"); |
| let result = (application == "fennec" || application == "fennec2"); |
| - Utils.__defineGetter__("isFennec", function() result); |
| + Utils.__defineGetter__("isFennec", () => result); |
| return result; |
| }, |
| /** |
| * Returns the user interface locale selected for adblockplus chrome package. |
| */ |
| get appLocale() |
| { |
| @@ -68,27 +68,27 @@ let Utils = exports.Utils = |
| try |
| { |
| locale = Utils.chromeRegistry.getSelectedLocale("adblockplus"); |
| } |
| catch (e) |
| { |
| Cu.reportError(e); |
| } |
| - Utils.__defineGetter__("appLocale", function() locale); |
| + Utils.__defineGetter__("appLocale", () => locale); |
| return Utils.appLocale; |
| }, |
| /** |
| * Returns version of the Gecko platform |
| */ |
| get platformVersion() |
| { |
| let platformVersion = Services.appinfo.platformVersion; |
| - Utils.__defineGetter__("platformVersion", function() platformVersion); |
| + Utils.__defineGetter__("platformVersion", () => platformVersion); |
| return Utils.platformVersion; |
| }, |
| /** |
| * Retrieves a string from global.properties string bundle, will throw if string isn't found. |
| * |
| * @param {String} name string name |
| * @return {String} |