mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 17:57:58 +01:00
Replace expression closures (getters).
Expression closures are to be axed. See https://bugzil.la/1083458.
This commit is contained in:
@@ -82,7 +82,11 @@ CommandLineHandler.prototype = {
|
||||
}
|
||||
},
|
||||
|
||||
get helpInfo() " -" + config.name + " <opts>" + " Additional options for " + config.appName + " startup\n".substr(config.name.length)
|
||||
get helpInfo() {
|
||||
return " -" + config.name + " <opts>" +
|
||||
" Additional options for " +
|
||||
config.appName + " startup\n".substr(config.name.length);
|
||||
}
|
||||
};
|
||||
|
||||
if (XPCOMUtils.generateNSGetFactory)
|
||||
|
||||
Reference in New Issue
Block a user