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 2018/01/03 14:30:18 UTC

[camel] 02/02: Fixed CS

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 155023fcc27e15a9f593da66ccd10abc7c70d6c2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jan 3 15:29:55 2018 +0100

    Fixed CS
---
 .../src/main/java/org/apache/camel/component/aws/ddb/QueryCommand.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/ddb/QueryCommand.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/ddb/QueryCommand.java
index d64e9ee..0ea1c52 100644
--- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/ddb/QueryCommand.java
+++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/ddb/QueryCommand.java
@@ -45,7 +45,7 @@ public class QueryCommand extends AbstractDdbCommand {
                 .withScanIndexForward(determineScanIndexForward());
         
         // Check if we have set an Index Name
-        if(exchange.getIn().getHeader(DdbConstants.INDEX_NAME, String.class) != null) {
+        if (exchange.getIn().getHeader(DdbConstants.INDEX_NAME, String.class) != null) {
             query.withIndexName(exchange.getIn().getHeader(DdbConstants.INDEX_NAME, String.class));
         }
         

-- 
To stop receiving notification emails like this one, please contact
"commits@camel.apache.org" <co...@camel.apache.org>.