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 78ec812707d Polished
78ec812707d is described below

commit 78ec812707dc43f65dffbfeff5b17eadbf39d9a5
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Wed Dec 14 11:38:21 2022 +0100

    Polished
---
 .../camel/processor/aggregate/AbstractListAggregationStrategy.java      | 2 +-
 .../camel/processor/aggregate/GroupedMessageAggregationStrategy.java    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/core/camel-core-processor/src/main/java/org/apache/camel/processor/aggregate/AbstractListAggregationStrategy.java
 
b/core/camel-core-processor/src/main/java/org/apache/camel/processor/aggregate/AbstractListAggregationStrategy.java
index a2b1767b35d..acc29410da2 100644
--- 
a/core/camel-core-processor/src/main/java/org/apache/camel/processor/aggregate/AbstractListAggregationStrategy.java
+++ 
b/core/camel-core-processor/src/main/java/org/apache/camel/processor/aggregate/AbstractListAggregationStrategy.java
@@ -114,7 +114,7 @@ public abstract class AbstractListAggregationStrategy<V> 
implements AggregationS
 
         @Override
         public String toString() {
-            // lets override toString so we don't write data for all the 
Exchanges by default
+            // override toString, so we don't write data for all the Exchanges 
by default
             return "List<Exchange>(" + size() + " elements)";
         }
     }
diff --git 
a/core/camel-core-processor/src/main/java/org/apache/camel/processor/aggregate/GroupedMessageAggregationStrategy.java
 
b/core/camel-core-processor/src/main/java/org/apache/camel/processor/aggregate/GroupedMessageAggregationStrategy.java
index 35ce2da6625..0a1aa519062 100644
--- 
a/core/camel-core-processor/src/main/java/org/apache/camel/processor/aggregate/GroupedMessageAggregationStrategy.java
+++ 
b/core/camel-core-processor/src/main/java/org/apache/camel/processor/aggregate/GroupedMessageAggregationStrategy.java
@@ -26,7 +26,7 @@ import org.apache.camel.support.DefaultExchange;
  * Aggregate all {@link Message} into a single combined Exchange holding all 
the aggregated messages in a {@link List}
  * of {@link Message} as the message body.
  * 
- * This aggregation strategy can used in combination with {@link 
org.apache.camel.processor.Splitter} to batch messages
+ * This aggregation strategy can be used in combination with {@link 
org.apache.camel.processor.Splitter} to batch messages
  */
 public class GroupedMessageAggregationStrategy extends 
AbstractListAggregationStrategy<Message> {
 

Reply via email to