You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/01/03 07:42:39 UTC

[camel] 02/04: Removed more refs to Guice

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

commit 5a20708c76f9174a09131a62935120651135e905
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Jan 3 08:06:56 2020 +0100

    Removed more refs to Guice
---
 docs/components/modules/ROOT/pages/spring-javaconfig.adoc | 3 +--
 docs/user-manual/modules/ROOT/pages/architecture.adoc     | 2 +-
 docs/user-manual/modules/ROOT/pages/component.adoc        | 2 +-
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/docs/components/modules/ROOT/pages/spring-javaconfig.adoc b/docs/components/modules/ROOT/pages/spring-javaconfig.adoc
index a6e34c7..8c08d61 100644
--- a/docs/components/modules/ROOT/pages/spring-javaconfig.adoc
+++ b/docs/components/modules/ROOT/pages/spring-javaconfig.adoc
@@ -4,8 +4,7 @@
 
 Spring started life using XML Config to wire beans
 together. However some folks don't like using XML and would rather use
-Java code which led to the creation of Guice along with the Spring
-JavaConfig project.
+Java code with the Spring JavaConfig project.
 
 You can use either the XML or Java config approaches with Camel; its
 your choice really on which you prefer.
diff --git a/docs/user-manual/modules/ROOT/pages/architecture.adoc b/docs/user-manual/modules/ROOT/pages/architecture.adoc
index f2f4ff5..9f11e25 100644
--- a/docs/user-manual/modules/ROOT/pages/architecture.adoc
+++ b/docs/user-manual/modules/ROOT/pages/architecture.adoc
@@ -14,7 +14,7 @@ which contains a collection of Component instances.
 A Component is essentially a factory of
 Endpoint instances. You can explicitly configure
 Component instances in Java code or an IoC
-container like Spring or Guice, or they can be auto-discovered using
+container like Spring, or they can be auto-discovered using
 URIs.
 
 An Endpoint acts rather like a URI or URL in a web
diff --git a/docs/user-manual/modules/ROOT/pages/component.adoc b/docs/user-manual/modules/ROOT/pages/component.adoc
index 3895985..2e9da36 100644
--- a/docs/user-manual/modules/ROOT/pages/component.adoc
+++ b/docs/user-manual/modules/ROOT/pages/component.adoc
@@ -5,7 +5,7 @@ A Component is essentially a factory of xref:endpoint.adoc[Endpoint] instances.
 
 You can explicitly configure Component instances
 and add them to a xref:camelcontext.adoc[CamelContext] in an IoC
-container like Spring or Guice, or they can be auto-discovered using
+container like Spring, or they can be auto-discovered using
 xref:uris.adoc[URIs].
 
 [[Component-ComponentsIncluded]]