From 52a6b1036c70a654081b31567a59a926e293fa96 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Wed, 2 May 2012 17:26:36 +0100 Subject: [PATCH] Removed parameters from command info block --- rabbithole/core/modules/commands/dump.js | 3 +-- rabbithole/core/modules/commands/verbose.js | 3 +-- rabbithole/core/modules/commands/version.js | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/rabbithole/core/modules/commands/dump.js b/rabbithole/core/modules/commands/dump.js index 93da5e117..fd9ca0c70 100644 --- a/rabbithole/core/modules/commands/dump.js +++ b/rabbithole/core/modules/commands/dump.js @@ -13,8 +13,7 @@ Dump command exports.info = { name: "dump", - synchronous: true, - params: {} + synchronous: true } var Command = function(params,commander) { diff --git a/rabbithole/core/modules/commands/verbose.js b/rabbithole/core/modules/commands/verbose.js index 9dafd08bf..d4e6be136 100644 --- a/rabbithole/core/modules/commands/verbose.js +++ b/rabbithole/core/modules/commands/verbose.js @@ -13,8 +13,7 @@ Verbose command exports.info = { name: "verbose", - synchronous: true, - params: {} + synchronous: true } var Command = function(params,commander) { diff --git a/rabbithole/core/modules/commands/version.js b/rabbithole/core/modules/commands/version.js index 8a441b7a0..cbba38671 100644 --- a/rabbithole/core/modules/commands/version.js +++ b/rabbithole/core/modules/commands/version.js @@ -13,8 +13,7 @@ Version command exports.info = { name: "version", - synchronous: true, - params: {} + synchronous: true } var Command = function(params,commander) {