You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bv...@apache.org on 2017/07/02 20:01:37 UTC

camel git commit: CAMEL-10544: Polish

Repository: camel
Updated Branches:
  refs/heads/master 73f1c78a3 -> 34afe7823


CAMEL-10544: Polish


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/34afe782
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/34afe782
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/34afe782

Branch: refs/heads/master
Commit: 34afe7823e6f266af77aee334f24d141048d9c91
Parents: 73f1c78
Author: Babak Vahdat <bv...@apache.org>
Authored: Sun Jul 2 22:01:08 2017 +0200
Committer: Babak Vahdat <bv...@apache.org>
Committed: Sun Jul 2 22:01:08 2017 +0200

----------------------------------------------------------------------
 .../org/apache/camel/component/xmpp/XmppMultiUserChatTest.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/34afe782/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppMultiUserChatTest.java
----------------------------------------------------------------------
diff --git a/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppMultiUserChatTest.java b/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppMultiUserChatTest.java
index e0f6a71..7f21d0c 100644
--- a/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppMultiUserChatTest.java
+++ b/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppMultiUserChatTest.java
@@ -71,14 +71,14 @@ public class XmppMultiUserChatTest extends CamelTestSupport {
         // the nickname parameter is necessary in these URLs because the '@' in the user name can not be parsed by
         // vysper during chat room message routing.
 
-        // here on purpose we provide the room query parameter without the domain name as 'camel-test', and camel
+        // here on purpose we provide the room query parameter without the domain name as 'camel-test', and Camel
         // will resolve it properly to 'camel-test@conference.apache.camel'
         return "xmpp://localhost:" + EmbeddedXmppTestServer.instance().getXmppPort()
             + "/?connectionConfig=#customConnectionConfig&room=camel-test&user=camel_producer@apache.camel&password=secret&nickname=camel_producer";
     }
     
     protected String getConsumerUri() {
-        // however here we provide the room query parameter as fully qualified including the domain name as
+        // however here we provide the room query parameter as fully qualified, including the domain name as
         // 'camel-test@conference.apache.camel'
         return "xmpp://localhost:" + EmbeddedXmppTestServer.instance().getXmppPort()
             + "/?connectionConfig=#customConnectionConfig&room=camel-test@conference.apache.camel&user=camel_consumer@apache.camel&password=secret&nickname=camel_consumer";