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 0B504200C4E for ; Fri, 21 Apr 2017 13:19:37 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 09D16160BA2; Fri, 21 Apr 2017 11:19:37 +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 51440160B97 for ; Fri, 21 Apr 2017 13:19:36 +0200 (CEST) Received: (qmail 82241 invoked by uid 500); 21 Apr 2017 11:19:35 -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 82232 invoked by uid 99); 21 Apr 2017 11:19:35 -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 11:19:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5214DF476A; Fri, 21 Apr 2017 11:19:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: camel git commit: fixing a small java doc misprint which is propagated to docs and fusetools Date: Fri, 21 Apr 2017 11:19:35 +0000 (UTC) archived-at: Fri, 21 Apr 2017 11:19:37 -0000 Repository: camel Updated Branches: refs/heads/master b33fbf822 -> 462779aec fixing a small java doc misprint which is propagated to docs and fusetools Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/462779ae Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/462779ae Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/462779ae Branch: refs/heads/master Commit: 462779aec89534af50d62a36000ecd1503f61420 Parents: b33fbf8 Author: Dmitry Volodin Authored: Fri Apr 21 14:14:24 2017 +0300 Committer: Claus Ibsen Committed: Fri Apr 21 13:19:28 2017 +0200 ---------------------------------------------------------------------- .../main/java/org/apache/camel/component/mail/MailEndpoint.java | 2 +- .../apache/camel/component/mail/InvalidConfigurationTest.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/462779ae/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailEndpoint.java ---------------------------------------------------------------------- diff --git a/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailEndpoint.java b/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailEndpoint.java index 683132f..da0a077 100644 --- a/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailEndpoint.java +++ b/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailEndpoint.java @@ -31,7 +31,7 @@ import org.apache.camel.spi.UriEndpoint; import org.apache.camel.spi.UriParam; /** - * To send or receive emails using imap/pop3 or stmp protocols. + * To send or receive emails using imap/pop3 or smtp protocols. */ @UriEndpoint(firstVersion = "1.0.0", scheme = "imap,imaps,pop3,pop3s,smtp,smtps", title = "IMAP,IMAPS,POP3,POP3S,SMTP,SMTPS", syntax = "imap:host:port", alternativeSyntax = "imap:username:password@host:port", http://git-wip-us.apache.org/repos/asf/camel/blob/462779ae/components/camel-mail/src/test/java/org/apache/camel/component/mail/InvalidConfigurationTest.java ---------------------------------------------------------------------- diff --git a/components/camel-mail/src/test/java/org/apache/camel/component/mail/InvalidConfigurationTest.java b/components/camel-mail/src/test/java/org/apache/camel/component/mail/InvalidConfigurationTest.java index 2f20a4e..1901433 100644 --- a/components/camel-mail/src/test/java/org/apache/camel/component/mail/InvalidConfigurationTest.java +++ b/components/camel-mail/src/test/java/org/apache/camel/component/mail/InvalidConfigurationTest.java @@ -32,7 +32,7 @@ public class InvalidConfigurationTest extends CamelTestSupport { PollingConsumer consumer = endpoint.createPollingConsumer(); try { consumer.start(); - fail("Should have thrown NoSuchProviderException as stmp protocol cannot be used for consuming mails"); + fail("Should have thrown NoSuchProviderException as smtp protocol cannot be used for consuming mails"); } catch (IllegalArgumentException e) { // expected } @@ -44,7 +44,7 @@ public class InvalidConfigurationTest extends CamelTestSupport { PollingConsumer consumer = endpoint.createPollingConsumer(); try { consumer.start(); - fail("Should have thrown NoSuchProviderException as stmp protocol cannot be used for consuming mails"); + fail("Should have thrown NoSuchProviderException as smtp protocol cannot be used for consuming mails"); } catch (IllegalArgumentException e) { // expected }