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 08:02:08 UTC

[camel] branch main 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 main
in repository https://gitbox.apache.org/repos/asf/camel.git


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

commit ece9cfa9a13b0c418887a508807af44a1da2cef6
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");