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

ppalaga pushed a commit to branch release/1.3.0
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 8349c6e2b33049695ff8de254029514a861efc06
Author: Peter Palaga <[email protected]>
AuthorDate: Fri Oct 16 17:36:43 2020 +0200

    Remove workaround for CAMEL-15518 #1769
---
 .../quarkus/core/deployment/CamelRegistryProcessor.java  | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git 
a/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelRegistryProcessor.java
 
b/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelRegistryProcessor.java
index d2b43f5..8ffbd52 100644
--- 
a/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelRegistryProcessor.java
+++ 
b/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelRegistryProcessor.java
@@ -16,7 +16,6 @@
  */
 package org.apache.camel.quarkus.core.deployment;
 
-import java.util.Arrays;
 import java.util.List;
 
 import io.quarkus.deployment.annotations.BuildStep;
@@ -49,21 +48,6 @@ public class CamelRegistryProcessor {
         return new CamelRegistryBuildItem(recorder.createRegistry());
     }
 
-    /*
-     * TODO: this is a workaround for 
https://github.com/apache/camel-quarkus/issues/1765
-     *       remove it after https://issues.apache.org/jira/browse/CAMEL-15518
-     */
-    @BuildStep
-    List<CamelBeanBuildItem> contextConfigurer() {
-        return Arrays.asList(
-                new CamelBeanBuildItem(
-                        "org.apache.camel.ExtendedCamelContext",
-                        
"org.apache.camel.impl.ExtendedCamelContextConfigurer"),
-                new CamelBeanBuildItem(
-                        "org.apache.camel.impl.ExtendedCamelContext",
-                        
"org.apache.camel.impl.ExtendedCamelContextConfigurer"));
-    }
-
     @Record(ExecutionTime.STATIC_INIT)
     @BuildStep
     public void bindBeansToRegistry(

Reply via email to