This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-2.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-2.x by this push: new 7ed4c91 CAMEL-13730: Remove deprecation for API added back to Camel 3 7ed4c91 is described below commit 7ed4c91207e104ac2c2a58946027984fbf2dc104 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); }