You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pa...@apache.org on 2018/01/26 17:25:49 UTC

[camel] branch master updated: ExchangeSend(ing)Event: small javadoc improvement

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

pascalschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 2b44398  ExchangeSend(ing)Event: small javadoc improvement
2b44398 is described below

commit 2b44398c187079fe038b7adcddcd7ab9cc29efe3
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Fri Jan 26 18:25:20 2018 +0100

    ExchangeSend(ing)Event: small javadoc improvement
---
 .../org/apache/camel/management/event/ExchangeSendingEvent.java   | 8 ++++----
 .../java/org/apache/camel/management/event/ExchangeSentEvent.java | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/camel-core/src/main/java/org/apache/camel/management/event/ExchangeSendingEvent.java b/camel-core/src/main/java/org/apache/camel/management/event/ExchangeSendingEvent.java
index 88844a2..10a9004 100644
--- a/camel-core/src/main/java/org/apache/camel/management/event/ExchangeSendingEvent.java
+++ b/camel-core/src/main/java/org/apache/camel/management/event/ExchangeSendingEvent.java
@@ -25,13 +25,13 @@ import org.apache.camel.Exchange;
  * Event for <b>before</b> sending an {@link Exchange} to an {@link Endpoint}.
  * <p/>
  * This event is emitted before attempting to send the {@link Exchange} to an {@link Endpoint}.
- * There is still some internal processing occurring before the actual sending takes places, and
- * therefore its not a 100% guarantee that the sending actually happens, as there may cause an
- * internal error before.
+ * There is still some internal processing done before the actual sending takes places, and
+ * therefore it is not 100% guaranteed that the sending actually happens, as an
+ * internal error may occur.
  * <p/>
  * The {@link ExchangeSentEvent} is an event which is emitted <b>after</b> the sending is done.
  * <p/>
- * These two events (sending and sent) come in pair, and therefore you need to make sure to return
+ * These two events (sending and sent) come in a pair, and therefore you need to make sure to return
  * <tt>true</tt> for both events in the {@link org.apache.camel.spi.EventNotifier#isEnabled(EventObject)}
  * method to receive events for either of them.
  *
diff --git a/camel-core/src/main/java/org/apache/camel/management/event/ExchangeSentEvent.java b/camel-core/src/main/java/org/apache/camel/management/event/ExchangeSentEvent.java
index 5a82c04..e6dc10d 100644
--- a/camel-core/src/main/java/org/apache/camel/management/event/ExchangeSentEvent.java
+++ b/camel-core/src/main/java/org/apache/camel/management/event/ExchangeSentEvent.java
@@ -25,7 +25,7 @@ import org.apache.camel.Exchange;
  * Event for <b>after</b> an {@link Exchange} has been sent to an {@link Endpoint}.
  * The {@link ExchangeSentEvent} is an event which is emitted <b>after</b> the sending is done.
  * <p/>
- * These two events (sending and sent) come in pair, and therefore you need to make sure to return
+ * These two events (sending and sent) come in a pair, and therefore you need to make sure to return
  * <tt>true</tt> for both events in the {@link org.apache.camel.spi.EventNotifier#isEnabled(EventObject)}
  * method to receive events for either of them.
  *

-- 
To stop receiving notification emails like this one, please contact
pascalschumacher@apache.org.