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 <dmvo...@gmail.com> Authored: Fri Apr 21 14:14:24 2017 +0300 Committer: Claus Ibsen <davscl...@apache.org> 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 }