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


The following commit(s) were added to refs/heads/master by this push:
     new c7821e1  Regen
c7821e1 is described below

commit c7821e17c514c618c8f22329366fa54da4ac84e9
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Sun May 19 17:20:26 2019 +0200

    Regen
---
 docs/components/modules/ROOT/pages/swagger-java.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/components/modules/ROOT/pages/swagger-java.adoc 
b/docs/components/modules/ROOT/pages/swagger-java.adoc
index f2c9462..77ec5ba 100644
--- a/docs/components/modules/ROOT/pages/swagger-java.adoc
+++ b/docs/components/modules/ROOT/pages/swagger-java.adoc
@@ -56,7 +56,7 @@ public class UserRouteBuilder extends RouteBuilder {
             .put().description("Updates or create a user").type(User.class)
                 .param().name("body").type(body).description("The user to 
update or create").endParam()
                 .to("bean:userService?method=updateUser")
-            .get("/findAll").description("Find all 
users").outTypeList(User.class)
+            .get("/findAll").description("Find all 
users").outType(User[].class)
                 .to("bean:userService?method=listUsers");
     }
 }

Reply via email to