You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/03/30 07:33:52 UTC

[camel] 02/04: CAMEL-19090: camel-core - Remove deprecated APIs

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

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

commit 66a44cbced8bd515f6e43f119cb5b8764822e29d
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Mar 30 08:49:10 2023 +0200

    CAMEL-19090: camel-core - Remove deprecated APIs
---
 core/camel-api/src/main/java/org/apache/camel/CamelContext.java | 2 --
 1 file changed, 2 deletions(-)

diff --git a/core/camel-api/src/main/java/org/apache/camel/CamelContext.java b/core/camel-api/src/main/java/org/apache/camel/CamelContext.java
index f3e81d9d7f2..ed740e19aa7 100644
--- a/core/camel-api/src/main/java/org/apache/camel/CamelContext.java
+++ b/core/camel-api/src/main/java/org/apache/camel/CamelContext.java
@@ -604,9 +604,7 @@ public interface CamelContext extends CamelContextLifecycle, RuntimeConfiguratio
      * @param      parameters      parameters to use for the route template when creating the new route
      * @return                     the id of the route added (for example when an id was auto assigned)
      * @throws     Exception       is thrown if error creating and adding the new route
-     * @deprecated                 use {@link #addRouteFromTemplate(String, String, String, Map)}
      */
-    @Deprecated
     String addRouteFromTemplate(String routeId, String routeTemplateId, Map<String, Object> parameters) throws Exception;
 
     /**