Return-Path: X-Original-To: apmail-syncope-commits-archive@www.apache.org Delivered-To: apmail-syncope-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2E89718AFF for ; Thu, 26 Nov 2015 16:56:10 +0000 (UTC) Received: (qmail 14065 invoked by uid 500); 26 Nov 2015 16:56:10 -0000 Delivered-To: apmail-syncope-commits-archive@syncope.apache.org Received: (qmail 14025 invoked by uid 500); 26 Nov 2015 16:56:10 -0000 Mailing-List: contact commits-help@syncope.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@syncope.apache.org Delivered-To: mailing list commits@syncope.apache.org Received: (qmail 14004 invoked by uid 99); 26 Nov 2015 16:56:10 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Nov 2015 16:56:10 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E20FCE2C47; Thu, 26 Nov 2015 16:56:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: massi@apache.org To: commits@syncope.apache.org Date: Thu, 26 Nov 2015 16:56:09 -0000 Message-Id: <4d7f88679b5648659824faf8f627675d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/5] syncope git commit: forgot delete command Repository: syncope Updated Branches: refs/heads/master 7334152c7 -> 327c8e03d forgot delete command Project: http://git-wip-us.apache.org/repos/asf/syncope/repo Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/9a5b26c6 Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/9a5b26c6 Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/9a5b26c6 Branch: refs/heads/master Commit: 9a5b26c681685d77617274ddb1d974b98d5fb5c2 Parents: 7334152 Author: massi Authored: Thu Nov 26 15:31:38 2015 +0100 Committer: massi Committed: Thu Nov 26 15:31:38 2015 +0100 ---------------------------------------------------------------------- .../syncope/client/cli/commands/question/QuestionCommand.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/syncope/blob/9a5b26c6/client/cli/src/main/java/org/apache/syncope/client/cli/commands/question/QuestionCommand.java ---------------------------------------------------------------------- diff --git a/client/cli/src/main/java/org/apache/syncope/client/cli/commands/question/QuestionCommand.java b/client/cli/src/main/java/org/apache/syncope/client/cli/commands/question/QuestionCommand.java index bcb2a5f..8c40375 100644 --- a/client/cli/src/main/java/org/apache/syncope/client/cli/commands/question/QuestionCommand.java +++ b/client/cli/src/main/java/org/apache/syncope/client/cli/commands/question/QuestionCommand.java @@ -44,6 +44,7 @@ public class QuestionCommand extends AbstractCommand { new QuestionRead(input).read(); break; case DELETE: + new QuestionDelete(input).delete(); break; case HELP: System.out.println(getHelpMessage());