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 2021/12/31 05:53:23 UTC

[camel] branch main updated: Fixed incorrectly typed method parameter names.

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 7fa4c76  Fixed incorrectly typed method parameter names.
7fa4c76 is described below

commit 7fa4c762d2067534d9b551d254153ba7061057f3
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