You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/08/02 07:56:16 UTC

[camel] branch camel-3.18.x updated: Update pipeline-eip.adoc - fix Java example snippet (#8091)

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

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


The following commit(s) were added to refs/heads/camel-3.18.x by this push:
     new a117669ba7d Update pipeline-eip.adoc - fix Java example snippet (#8091)
a117669ba7d is described below

commit a117669ba7db4d30b4a571bece8d49ec914d4d91
Author: Aurélien Pupier <ap...@redhat.com>
AuthorDate: Tue Aug 2 09:56:10 2022 +0200

    Update pipeline-eip.adoc - fix Java example snippet (#8091)
---
 .../camel-core-engine/src/main/docs/modules/eips/pages/pipeline-eip.adoc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/core/camel-core-engine/src/main/docs/modules/eips/pages/pipeline-eip.adoc b/core/camel-core-engine/src/main/docs/modules/eips/pages/pipeline-eip.adoc
index 7c6adb4f025..7050b05a55b 100644
--- a/core/camel-core-engine/src/main/docs/modules/eips/pages/pipeline-eip.adoc
+++ b/core/camel-core-engine/src/main/docs/modules/eips/pages/pipeline-eip.adoc
@@ -55,7 +55,6 @@ multiple outputs in Camel. Therefore, it's much more common to see this with Cam
 [source,java]
 ----
 from("activemq:SomeQueue")
-    .pipeline()
     .to("bean:foo")
     .to("bean:bar")
     .to("acitvemq:OutputQueueu");