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

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


The following commit(s) were added to refs/heads/camel-2.24.x by this push:
     new e7ca202  CAMEL-13730: Remove deprecation for API added back to Camel 3
e7ca202 is described below

commit e7ca2022f1a5b78dbc0b8992319d439a81154de7
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Sat Jul 6 10:17:08 2019 +0200

    CAMEL-13730: Remove deprecation for API added back to Camel 3
---
 camel-core/src/main/java/org/apache/camel/builder/NotifyBuilder.java | 4 ----
 1 file changed, 4 deletions(-)

diff --git 
a/camel-core/src/main/java/org/apache/camel/builder/NotifyBuilder.java 
b/camel-core/src/main/java/org/apache/camel/builder/NotifyBuilder.java
index 7f210ee..1e13106 100644
--- a/camel-core/src/main/java/org/apache/camel/builder/NotifyBuilder.java
+++ b/camel-core/src/main/java/org/apache/camel/builder/NotifyBuilder.java
@@ -856,7 +856,6 @@ public class NotifyBuilder {
      * @param mock the mock
      * @return the builder
      */
-    @Deprecated
     public NotifyBuilder whenDoneSatisfied(final MockEndpoint mock) {
         return doWhenSatisfied(mock, false);
     }
@@ -874,7 +873,6 @@ public class NotifyBuilder {
      * @param mock the mock
      * @return the builder
      */
-    @Deprecated
     public NotifyBuilder whenReceivedSatisfied(final MockEndpoint mock) {
         return doWhenSatisfied(mock, true);
     }
@@ -957,7 +955,6 @@ public class NotifyBuilder {
      * @param mock the mock
      * @return the builder
      */
-    @Deprecated
     public NotifyBuilder whenReceivedNotSatisfied(final MockEndpoint mock) {
         return doWhenNotSatisfied(mock, true);
     }
@@ -975,7 +972,6 @@ public class NotifyBuilder {
      * @param mock the mock
      * @return the builder
      */
-    @Deprecated
     public NotifyBuilder whenDoneNotSatisfied(final MockEndpoint mock) {
         return doWhenNotSatisfied(mock, false);
     }

Reply via email to