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

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


The following commit(s) were added to refs/heads/camel-3.4.x by this push:
     new 7a7529b  Polish and cleanup documentation
7a7529b is described below

commit 7a7529b18812af31c36a6e33567d5d095c6db36e
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Wed Aug 11 07:59:47 2021 +0200

    Polish and cleanup documentation
---
 .../src/main/docs/modules/eips/pages/content-based-router-eip.adoc | 2 --
 .../src/main/docs/modules/eips/pages/content-enricher.adoc         | 7 -------
 .../src/main/docs/modules/eips/pages/content-filter-eip.adoc       | 2 --
 .../src/main/docs/modules/eips/pages/eventDrivenConsumer-eip.adoc  | 2 --
 .../src/main/docs/modules/eips/pages/polling-consumer.adoc         | 2 --
 .../src/main/docs/modules/eips/pages/wireTap-eip.adoc              | 4 ----
 6 files changed, 19 deletions(-)

diff --git 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/content-based-router-eip.adoc
 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/content-based-router-eip.adoc
index a6ff7e0..fe6edcc 100644
--- 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/content-based-router-eip.adoc
+++ 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/content-based-router-eip.adoc
@@ -13,8 +13,6 @@ The following example shows how to route a request from an 
input
 *seda:a* endpoint to either *seda:b*, *seda:c* or *seda:d* depending on
 the evaluation of various xref:latest@manual:ROOT:predicate.adoc[Predicate] 
expressions
 
-== Using the xref:latest@manual:ROOT:fluent-builders.adoc[Fluent Builders]
-
 [source,java]
 ----
 RouteBuilder builder = new RouteBuilder() {
diff --git 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/content-enricher.adoc 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/content-enricher.adoc
index fe31423..5a32621 100644
--- 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/content-enricher.adoc
+++ 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/content-enricher.adoc
@@ -14,8 +14,6 @@ image::eip/DataEnricher.gif[image]
 [[ContentEnricher-ContentenrichmentusingaMessageTranslatororaProcessor]]
 == Content enrichment using a Message Translator or a Processor
 
-*Using the* *xref:latest@manual:ROOT:fluent-builders.adoc[Fluent Builders]*
-
 You can use xref:latest@manual:ROOT:templating.adoc[Templating] to consume a 
message from
 one destination, transform it with something like
 xref:components::velocity-component.adoc[Velocity] or 
xref:components::xquery-component.adoc[XQuery], and then send
@@ -136,8 +134,6 @@ longer apply and it just works.
 [[ContentEnricher-EnrichOptions]]
 == Enrich Options
 
-confluenceTableSmall
-
 [width="100%",cols="34%,33%,33%",options="header",]
 |=======================================================================
 |Name |Default Value |Description
@@ -206,9 +202,6 @@ endpoint URI that could not be resolved. If disabled, Camel 
will throw
 an exception identifying the invalid endpoint URI.
 |=======================================================================
 
-*Using the* *xref:latest@manual:ROOT:fluent-builders.adoc[Fluent Builders]*
-
-
 [source,java]
 ----
 AggregationStrategy aggregationStrategy = ... 
diff --git 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/content-filter-eip.adoc
 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/content-filter-eip.adoc
index eccdbcc..fb07ca3 100644
--- 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/content-filter-eip.adoc
+++ 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/content-filter-eip.adoc
@@ -18,8 +18,6 @@ A common way to filter messages is to use an
 xref:latest@manual:ROOT:expression.adoc[Expression] in the 
xref:latest@manual:ROOT:dsl.adoc[DSL] like
 xref:components:languages:xquery-language.adoc[XQuery].
 
-== Using the xref:latest@manual:ROOT:fluent-builders.adoc[Fluent Builders]
-
 Here is a simple example using the xref:latest@manual:ROOT:dsl.adoc[DSL] 
directly
 
 In this example we add our own 
xref:latest@manual:ROOT:processor.adoc[Processor]
diff --git 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/eventDrivenConsumer-eip.adoc
 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/eventDrivenConsumer-eip.adoc
index 1a26413..aa3e086 100644
--- 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/eventDrivenConsumer-eip.adoc
+++ 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/eventDrivenConsumer-eip.adoc
@@ -24,8 +24,6 @@ 
http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Proces
 defined in the Camel xref:latest@manual:ROOT:registry.adoc[Registry] which is
 invoked when an event occurs from a xref:components::jms-component.adoc[JMS] 
queue.
 
-*Using the xref:latest@manual:ROOT:fluent-builders.adoc[Fluent Builders]*
-
 [source,java]
 ----
 from("jms:queue:foo")
diff --git 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/polling-consumer.adoc 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/polling-consumer.adoc
index bd425eb..628bd34 100644
--- 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/polling-consumer.adoc
+++ 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/polling-consumer.adoc
@@ -187,8 +187,6 @@ For more details see:
 
 The *`ScheduledPollConsumer`* supports the following options:
 
-confluenceTableSmall
-
 [width="100%",cols="34%,33%,33%",options="header",]
 |=======================================================================
 |Option |Default |Description
diff --git 
a/core/camel-core-engine/src/main/docs/modules/eips/pages/wireTap-eip.adoc 
b/core/camel-core-engine/src/main/docs/modules/eips/pages/wireTap-eip.adoc
index 81e75fa..2ffc610 100644
--- a/core/camel-core-engine/src/main/docs/modules/eips/pages/wireTap-eip.adoc
+++ b/core/camel-core-engine/src/main/docs/modules/eips/pages/wireTap-eip.adoc
@@ -75,8 +75,6 @@ values.
 
 == Sending a Copy (traditional wiretap)
 
-* Using the xref:latest@manual:ROOT:fluent-builders.adoc[Fluent Builders]
-
 [source,java]
 ----
     protected RouteBuilder createRouteBuilder() {
@@ -102,8 +100,6 @@ values.
 
 == Sending a New xref:latest@manual:ROOT:exchange.adoc[Exchange]
 
-*Using the xref:latest@manual:ROOT:fluent-builders.adoc[Fluent Builders]*
-
 Camel supports either a processor or an
 xref:latest@manual:ROOT:expression.adoc[Expression] to populate the new
 xref:latest@manual:ROOT:exchange.adoc[Exchange]. Using a processor gives you 
full power

Reply via email to