You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2013/12/25 05:11:05 UTC

git commit: CAMEL-6623 Fixed a simple CS error

Updated Branches:
  refs/heads/master d9673703e -> 51088fea0


CAMEL-6623 Fixed a simple CS error


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

Branch: refs/heads/master
Commit: 51088fea03cd9e45987f1e9bfc5da3b8fc7c2dfb
Parents: d967370
Author: Willem Jiang <wi...@gmail.com>
Authored: Wed Dec 25 12:10:49 2013 +0800
Committer: Willem Jiang <wi...@gmail.com>
Committed: Wed Dec 25 12:10:49 2013 +0800

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


http://git-wip-us.apache.org/repos/asf/camel/blob/51088fea/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsEndpoint.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsEndpoint.java
index 7f6bf46..ca3ff0a 100644
--- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsEndpoint.java
+++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsEndpoint.java
@@ -83,8 +83,8 @@ public class SqsEndpoint extends ScheduledPollEndpoint {
         // If both region and Account ID is provided the queue URL can be built manually.
         // This allows accessing queues where you don't have permission to list queues or query queues
         if (configuration.getRegion() != null && configuration.getQueueOwnerAWSAccountId() != null) {
-            queueUrl = "https://sqs." + configuration.getRegion() + ".amazonaws.com/" +
-                    configuration.getQueueOwnerAWSAccountId() + "/" + configuration.getQueueName();
+            queueUrl = "https://sqs." + configuration.getRegion() + ".amazonaws.com/"
+                +  configuration.getQueueOwnerAWSAccountId() + "/" + configuration.getQueueName();
         } else if (configuration.getQueueOwnerAWSAccountId() != null) {
             GetQueueUrlRequest getQueueUrlRequest = new GetQueueUrlRequest();
             getQueueUrlRequest.setQueueName(configuration.getQueueName());