You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/04/20 13:41:34 UTC

[camel] branch main updated: Fix sqs doc code example

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 211145b2194 Fix sqs doc code example
211145b2194 is described below

commit 211145b219482f7aa214bc5fb9ed8feaac06a9ac
Author: Claus Ibsen <cl...@gmail.com>
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 695dd7ff77f..f04effe7e45 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
@@ -179,7 +179,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");