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

davsclaus 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 33a1e38  Corrected small error in java code on test-cdi.adoc (#4772)
33a1e38 is described below

commit 33a1e3852ae12b0f082de9b25dd3427e44a914fc
Author: Geert Schuring <[email protected]>
AuthorDate: Tue Dec 15 18:58:04 2020 +0100

    Corrected small error in java code on test-cdi.adoc (#4772)
---
 components/camel-test-cdi/src/main/docs/test-cdi.adoc | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/components/camel-test-cdi/src/main/docs/test-cdi.adoc 
b/components/camel-test-cdi/src/main/docs/test-cdi.adoc
index ba6f214..03f617e 100644
--- a/components/camel-test-cdi/src/main/docs/test-cdi.adoc
+++ b/components/camel-test-cdi/src/main/docs/test-cdi.adoc
@@ -460,9 +460,11 @@ public class CamelCdiTest {
     // that is automatically added to the Camel context
     static class TestRoute extends RouteBuilder {
 
-    @Override
-    public void configure() {
-        from("direct:out").routeId("test").to("mock:out");
+        @Override
+        public void configure() {
+            from("direct:out").routeId("test").to("mock:out");
+        }
+    
     }
 
     // And retrieve the MockEndpoint for further assertions

Reply via email to