You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2017/04/21 07:24:24 UTC

camel git commit: Correct comment description of CreateIssueProducer

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 <ja...@gmail.com>
Authored: Thu Apr 20 17:11:57 2017 +0100
Committer: Andrea Cosentino <an...@gmail.com>
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 {