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

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


The following commit(s) were added to refs/heads/main by this push:
     new b0688c9  Removed static modifier from top level class example
b0688c9 is described below

commit b0688c9da966d5556cc71b174a89fb5d49044415
Author: Martin Muzikar <[email protected]>
AuthorDate: Thu Jul 29 08:16:47 2021 +0200

    Removed static modifier from top level class example
---
 docs/modules/ROOT/pages/user-guide/cdi.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/modules/ROOT/pages/user-guide/cdi.adoc 
b/docs/modules/ROOT/pages/user-guide/cdi.adoc
index c3d1554..afc96e2 100644
--- a/docs/modules/ROOT/pages/user-guide/cdi.adoc
+++ b/docs/modules/ROOT/pages/user-guide/cdi.adoc
@@ -54,7 +54,7 @@ import java.util.List;
 import org.apache.camel.CamelContext;
 
 @ApplicationScoped
-public static class MyBean {
+public class MyBean {
 
     @Inject
     CamelContext context;

Reply via email to