You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/04/03 19:13:28 UTC

[camel] 04/05: CAMEL-15105: removed unused method

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

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

commit 599b1e3d5741e5a3323decd9a1faf9c4f87e6a4d
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Mon Apr 3 19:31:39 2023 +0200

    CAMEL-15105: removed unused method
---
 .../java/org/apache/camel/impl/engine/AbstractCamelContext.java     | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
index 9a8e3a00d70..d7972055bb5 100644
--- a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
+++ b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
@@ -103,7 +103,6 @@ import org.apache.camel.spi.DebuggerFactory;
 import org.apache.camel.spi.DeferServiceFactory;
 import org.apache.camel.spi.EndpointRegistry;
 import org.apache.camel.spi.EndpointStrategy;
-import org.apache.camel.spi.EndpointUriFactory;
 import org.apache.camel.spi.EventNotifier;
 import org.apache.camel.spi.ExchangeFactory;
 import org.apache.camel.spi.ExchangeFactoryManager;
@@ -4111,6 +4110,7 @@ public abstract class AbstractCamelContext extends BaseService
         camelContextExtension.setDescription(description);
     }
 
+    @Override
     public String getDescription() {
         return camelContextExtension.getDescription();
     }
@@ -4127,10 +4127,6 @@ public abstract class AbstractCamelContext extends BaseService
         camelContextExtension.addInterceptStrategy(interceptStrategy);
     }
 
-    public EndpointUriFactory getEndpointUriFactory(String scheme) {
-        return camelContextExtension.getEndpointUriFactory(scheme);
-    }
-
     public StartupStepRecorder getStartupStepRecorder() {
         return camelContextExtension.getStartupStepRecorder();
     }