Merge pull request #526 from tricknotes/remove-unused

Remove unused local variable
This commit is contained in:
Sebastian McKenzie 2015-01-18 22:30:24 +11:00
commit 1c6cb7ce40

View File

@ -34,13 +34,10 @@ commander.on("--help", function(){
console.log(" " + title + ":");
console.log();
var hasOptional = true;
_.each(_.keys(obj).sort(), function (key) {
if (key[0] === "_") return;
if (obj[key].optional) {
hasOptional = true;
key = "[" + key + "]";
}