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 2021/12/28 21:29:14 UTC

[camel] branch camel-3.14.x updated: Fixed incorrectly typed method parameter names.

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

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


The following commit(s) were added to refs/heads/camel-3.14.x by this push:
     new 5972373  Fixed incorrectly typed method parameter names.
5972373 is described below

commit 59723731ab6bbb28d9a8d23f9550edbb09245ce2
Author: erayerdem <42...@users.noreply.github.com>
AuthorDate: Wed Dec 29 00:19:28 2021 +0300

    Fixed incorrectly typed method parameter names.
---
 core/camel-core-engine/src/main/docs/modules/eips/pages/enrich-eip.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-core-engine/src/main/docs/modules/eips/pages/enrich-eip.adoc b/core/camel-core-engine/src/main/docs/modules/eips/pages/enrich-eip.adoc
index d4eba5a..538a0bf 100644
--- a/core/camel-core-engine/src/main/docs/modules/eips/pages/enrich-eip.adoc
+++ b/core/camel-core-engine/src/main/docs/modules/eips/pages/enrich-eip.adoc
@@ -52,7 +52,7 @@ as a `String` with colon separator:
 ----
 public class ExampleAggregationStrategy implements AggregationStrategy {
 
-    public Exchange aggregate(Exchange original, Exchange resource) {
+    public Exchange aggregate(Exchange newExchange, Exchange oldExchange) {
         // this is just an example, for real-world use-cases the
         // aggregation strategy would be specific to the use-case