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 2020/03/17 16:38:16 UTC

[camel] 03/03: Camel-AWS2-Lambda: 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 d1e9c0673cdbe09acde995e9d60ede23f6f56892
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 17 17:36:21 2020 +0100

    Camel-AWS2-Lambda: Fixed CS
---
 .../org/apache/camel/component/aws2/lambda/Lambda2Producer.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Producer.java b/components/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Producer.java
index ff32bd3..451e22b 100644
--- a/components/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Producer.java
+++ b/components/camel-aws2-lambda/src/main/java/org/apache/camel/component/aws2/lambda/Lambda2Producer.java
@@ -200,7 +200,7 @@ public class Lambda2Producer extends DefaultProducer {
     }
 
     @SuppressWarnings("unchecked")
-	private void createFunction(LambdaClient lambdaClient, Exchange exchange) throws Exception {
+    private void createFunction(LambdaClient lambdaClient, Exchange exchange) throws Exception {
         CreateFunctionResponse result;
 
         try {
@@ -425,7 +425,7 @@ public class Lambda2Producer extends DefaultProducer {
     }
 
     @SuppressWarnings("unchecked")
-	private void tagResource(LambdaClient lambdaClient, Exchange exchange) {
+    private void tagResource(LambdaClient lambdaClient, Exchange exchange) {
         TagResourceResponse result;
         try {
             TagResourceRequest.Builder request = TagResourceRequest.builder();
@@ -451,7 +451,7 @@ public class Lambda2Producer extends DefaultProducer {
     }
 
     @SuppressWarnings("unchecked")
-	private void untagResource(LambdaClient lambdaClient, Exchange exchange) {
+    private void untagResource(LambdaClient lambdaClient, Exchange exchange) {
         UntagResourceResponse result;
         try {
             UntagResourceRequest.Builder request = UntagResourceRequest.builder();