Updated Branches: refs/heads/master 02799ff0f -> 69979b237
Comment tenant deletion in CLI Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/69979b23 Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/69979b23 Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/69979b23 Branch: refs/heads/master Commit: 69979b237f49fe17fdb2c16e90c8ca7c4249e42f Parents: 02799ff Author: Manula Thantriwatte <[email protected]> Authored: Thu Feb 13 16:37:44 2014 +0530 Committer: Manula Thantriwatte <[email protected]> Committed: Thu Feb 13 16:37:44 2014 +0530 ---------------------------------------------------------------------- .../src/main/java/org/apache/stratos/cli/StratosApplication.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/69979b23/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java index 39ba8d6..b13eff3 100644 --- a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java +++ b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/StratosApplication.java @@ -102,8 +102,8 @@ public class StratosApplication extends CommandLineApplication<StratosCommandCon command = new AddTenantCommand(); commands.put(command.getName(), command); - command = new DeleteTenantCommand(); - commands.put(command.getName(), command); + //command = new DeleteTenantCommand(); + //commands.put(command.getName(), command); command = new DeactivateTenantCommand(); commands.put(command.getName(), command);
