Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id DF862200C4E for ; Fri, 21 Apr 2017 09:24:25 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DE283160B97; Fri, 21 Apr 2017 07:24:25 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 34D1C160BA2 for ; Fri, 21 Apr 2017 09:24:25 +0200 (CEST) Received: (qmail 65500 invoked by uid 500); 21 Apr 2017 07:24:24 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 65491 invoked by uid 99); 21 Apr 2017 07:24:24 -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; Fri, 21 Apr 2017 07:24:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2F15DE3A9C; Fri, 21 Apr 2017 07:24:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: acosentino@apache.org To: commits@camel.apache.org Message-Id: <74a61a4b4c984224970aa15e2550afe2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: camel git commit: Correct comment description of CreateIssueProducer Date: Fri, 21 Apr 2017 07:24:24 +0000 (UTC) archived-at: Fri, 21 Apr 2017 07:24:26 -0000 Repository: camel Updated Branches: refs/heads/master 0ff5785a9 -> f7cc2aea1 Correct comment description of CreateIssueProducer Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/f7cc2aea Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/f7cc2aea Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/f7cc2aea Branch: refs/heads/master Commit: f7cc2aea108bb1855f8e757a9f2691d4e8e3433f Parents: 0ff5785 Author: James Netherton Authored: Thu Apr 20 17:11:57 2017 +0100 Committer: Andrea Cosentino Committed: Fri Apr 21 09:22:04 2017 +0200 ---------------------------------------------------------------------- .../camel/component/github/producer/CreateIssueProducer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/f7cc2aea/components/camel-github/src/main/java/org/apache/camel/component/github/producer/CreateIssueProducer.java ---------------------------------------------------------------------- diff --git a/components/camel-github/src/main/java/org/apache/camel/component/github/producer/CreateIssueProducer.java b/components/camel-github/src/main/java/org/apache/camel/component/github/producer/CreateIssueProducer.java index 9fcd0e7..2e87e35 100644 --- a/components/camel-github/src/main/java/org/apache/camel/component/github/producer/CreateIssueProducer.java +++ b/components/camel-github/src/main/java/org/apache/camel/component/github/producer/CreateIssueProducer.java @@ -25,8 +25,8 @@ import org.eclipse.egit.github.core.Issue; import org.eclipse.egit.github.core.service.IssueService; /** - * Producer endpoint that closes a pull request. The endpoint requires the "GitHubPullRequest" header, - * identifying the pull request number (integer). + * Producer endpoint that creates an issue. The endpoint requires the "GitHubIssueTitle" header, + * which sets the GitHub issue title. The issue body content is set from the exchange message body. */ public class CreateIssueProducer extends AbstractGitHubProducer {