From commits-return-31946-apmail-karaf-commits-archive=karaf.apache.org@karaf.apache.org Sun Sep 10 04:58:15 2017 Return-Path: X-Original-To: apmail-karaf-commits-archive@minotaur.apache.org Delivered-To: apmail-karaf-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0CA681A24F for ; Sun, 10 Sep 2017 04:58:15 +0000 (UTC) Received: (qmail 6035 invoked by uid 500); 10 Sep 2017 04:58:15 -0000 Delivered-To: apmail-karaf-commits-archive@karaf.apache.org Received: (qmail 6002 invoked by uid 500); 10 Sep 2017 04:58:14 -0000 Mailing-List: contact commits-help@karaf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@karaf.apache.org Delivered-To: mailing list commits@karaf.apache.org Received: (qmail 5993 invoked by uid 99); 10 Sep 2017 04:58:14 -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; Sun, 10 Sep 2017 04:58:14 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 83737F570D; Sun, 10 Sep 2017 04:58:13 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jbonofre@apache.org To: commits@karaf.apache.org Date: Sun, 10 Sep 2017 04:58:13 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] karaf git commit: [KARAF-5357] Fixes mistake in feature help info Repository: karaf Updated Branches: refs/heads/master 4c740f535 -> c5d3a882c [KARAF-5357] Fixes mistake in feature help info Project: http://git-wip-us.apache.org/repos/asf/karaf/repo Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/5eb7c0d6 Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/5eb7c0d6 Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/5eb7c0d6 Branch: refs/heads/master Commit: 5eb7c0d690a89c00f96769fab5a88291c2df6780 Parents: 4c740f5 Author: bseeger Authored: Fri Sep 8 16:19:01 2017 -0400 Committer: bseeger Committed: Fri Sep 8 16:19:01 2017 -0400 ---------------------------------------------------------------------- .../org/apache/karaf/features/command/StopFeaturesCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/karaf/blob/5eb7c0d6/features/command/src/main/java/org/apache/karaf/features/command/StopFeaturesCommand.java ---------------------------------------------------------------------- diff --git a/features/command/src/main/java/org/apache/karaf/features/command/StopFeaturesCommand.java b/features/command/src/main/java/org/apache/karaf/features/command/StopFeaturesCommand.java index ac87125..f58ea50 100644 --- a/features/command/src/main/java/org/apache/karaf/features/command/StopFeaturesCommand.java +++ b/features/command/src/main/java/org/apache/karaf/features/command/StopFeaturesCommand.java @@ -29,7 +29,7 @@ import org.apache.karaf.shell.api.action.Completion; import org.apache.karaf.shell.api.action.Option; import org.apache.karaf.shell.api.action.lifecycle.Service; -@Command(scope = "feature", name = "stop", description = "Start features with the specified name and version.") +@Command(scope = "feature", name = "stop", description = "Stop features with the specified name and version.") @Service public class StopFeaturesCommand extends FeaturesCommandSupport {