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
commit c7902015232e2af9a5f7e3d432944c6556179626 Author: Claus Ibsen <[email protected]> AuthorDate: Wed Dec 14 18:44:03 2022 +0100 CAMEL-18739: camel-core - AggregationStrategy onCompletion to have access to input exchange. --- .../src/main/java/org/apache/camel/AggregationStrategy.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/camel-api/src/main/java/org/apache/camel/AggregationStrategy.java b/core/camel-api/src/main/java/org/apache/camel/AggregationStrategy.java index 22a4cea8479..7d062c1dd20 100644 --- a/core/camel-api/src/main/java/org/apache/camel/AggregationStrategy.java +++ b/core/camel-api/src/main/java/org/apache/camel/AggregationStrategy.java @@ -125,9 +125,9 @@ public interface AggregationStrategy { * * <b>Important: </b> This method must <b>not</b> throw any exceptions. * - * @param exchange the current aggregated exchange, or the original {@link org.apache.camel.Exchange} if no - * aggregation has been done before the completion occurred - * @param inputExchange the input exchange (input to the EIP) + * @param exchange the current aggregated exchange, or the original {@link org.apache.camel.Exchange} if no + * aggregation has been done before the completion occurred + * @param inputExchange the input exchange (input to the EIP) */ default void onCompletion(Exchange exchange, Exchange inputExchange) { onCompletion(exchange);
