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

davsclaus pushed a commit to branch camel-3.14.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.14.x by this push:
     new 17a70057fe9 Fix sqs doc code example
17a70057fe9 is described below

commit 17a70057fe9c2fe1d687f6fa94516a1a2eadfc76
Author: Claus Ibsen <[email protected]>
AuthorDate: Wed Apr 20 15:41:14 2022 +0200

    Fix sqs doc code example
---
 .../camel-aws/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-aws/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc 
b/components/camel-aws/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc
index 950b1acaedc..cd2269baf34 100644
--- a/components/camel-aws/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc
+++ b/components/camel-aws/camel-aws2-sqs/src/main/docs/aws2-sqs-component.adoc
@@ -204,7 +204,7 @@ from("direct:start")
   .process(new Processor() {
       @Override
       public void process(Exchange exchange) throws Exception {
-          Collection c = new ArrayList<Integer>();
+          List c = new ArrayList();
           c.add("team1");
           c.add("team2");
           c.add("team3");

Reply via email to